Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 65 additions & 0 deletions voip-panel/.env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
APP_NAME="VoIP Panel"
APP_ENV=production
APP_KEY=
APP_DEBUG=false
APP_URL=http://localhost

LOG_CHANNEL=stack
LOG_DEPRECATIONS_CHANNEL=null
LOG_LEVEL=debug

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=voip_panel
DB_USERNAME=root
DB_PASSWORD=

BROADCAST_DRIVER=log
CACHE_DRIVER=file
FILESYSTEM_DISK=local
QUEUE_CONNECTION=sync
SESSION_DRIVER=file
SESSION_LIFETIME=120

MEMCACHED_HOST=127.0.0.1

REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379

MAIL_MAILER=smtp
MAIL_HOST=mailpit
MAIL_PORT=1025
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS="hello@example.com"
MAIL_FROM_NAME="${APP_NAME}"

# FreeSWITCH Configuration
FREESWITCH_HOST=127.0.0.1
FREESWITCH_PORT=8021
FREESWITCH_PASSWORD=ClueCon
FREESWITCH_ESL_HOST=127.0.0.1
FREESWITCH_ESL_PORT=8021

# AI Configuration
OPENAI_API_KEY=
AI_ENABLED=true
AI_MODE=hybrid

# Billing
BILLING_ENABLED=true
DEFAULT_RATE_PER_MINUTE=0.01

# Video Conference
VIDEO_ENABLED=true
VERTO_WS_URL=wss://127.0.0.1:8082

# SMS Configuration
SMS_ENABLED=true
SMS_PROVIDER=signalwire
SIGNALWIRE_PROJECT_ID=
SIGNALWIRE_TOKEN=
SIGNALWIRE_SPACE=
20 changes: 20 additions & 0 deletions voip-panel/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
/node_modules
/public/hot
/public/storage
/storage/*.key
/vendor
.env
.env.backup
.phpunit.result.cache
docker-compose.override.yml
Homestead.json
Homestead.yaml
npm-debug.log
yarn-error.log
/.idea
/.vscode
.DS_Store
Thumbs.db
*.log
/storage/logs/*
!/storage/logs/.gitignore
Loading