-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example1
More file actions
60 lines (53 loc) · 2.2 KB
/
.env.example1
File metadata and controls
60 lines (53 loc) · 2.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# -----------------------------------------------------------------------------
# CORE APPLICATION
# -----------------------------------------------------------------------------
APP_NAME="NextcloudAlt"
APP_ENV=production
# The user will generate this by running: docker compose exec app php artisan key:generate
APP_KEY=
APP_DEBUG=false
APP_URL=http://localhost
# -----------------------------------------------------------------------------
# DATABASE (MySQL)
# -----------------------------------------------------------------------------
# The host is 'mysql' because that is the service name in docker-compose
DB_CONNECTION=mysql
DB_HOST=mysql
DB_PORT=3306
DB_DATABASE=platformio
DB_USERNAME=laravel
DB_PASSWORD=secret_db_password
# -----------------------------------------------------------------------------
# CACHE, SESSION & QUEUE (Redis)
# -----------------------------------------------------------------------------
# The host is 'redis' matching the docker-compose service
CACHE_STORE=redis
SESSION_DRIVER=redis
QUEUE_CONNECTION=redis
REDIS_CLIENT=phpredis
REDIS_HOST=redis
REDIS_PASSWORD=null
REDIS_PORT=6379
# -----------------------------------------------------------------------------
# REAL-TIME CHAT & WEBRTC SIGNALING (Laravel Reverb)
# -----------------------------------------------------------------------------
REVERB_APP_ID=123456
REVERB_APP_KEY=my_secure_reverb_key
REVERB_APP_SECRET=my_secure_reverb_secret
REVERB_HOST=localhost
REVERB_PORT=8080
REVERB_SCHEME=http
# Vite needs these to bundle the frontend Svelte WebSocket client
VITE_REVERB_APP_KEY="${REVERB_APP_KEY}"
VITE_REVERB_HOST="${REVERB_HOST}"
VITE_REVERB_PORT="${REVERB_PORT}"
VITE_REVERB_SCHEME="${REVERB_SCHEME}"
# -----------------------------------------------------------------------------
# PYTHON BACKGROUND SERVICES
# -----------------------------------------------------------------------------
# Used by Python to securely authenticate its API calls back to Laravel
INTERNAL_API_TOKEN=generate_a_long_random_string_here
# -----------------------------------------------------------------------------
# AI MODEL CONFIGURATION (smolagents)
# -----------------------------------------------------------------------------
# i will decide later