Keep the dev container as root for s6 init so composer can create vendor/ on root-owned mounts, then chown writable paths to www-data. Move init-setup into a shell script and expose VITE_HOST/PORT for remote HMR (LAN/Tailscale) with Vite listening on 0.0.0.0.
52 lines
1.3 KiB
Text
52 lines
1.3 KiB
Text
# Coolify Configuration
|
|
APP_ENV=local
|
|
APP_NAME=Coolify
|
|
APP_ID=development
|
|
APP_KEY=
|
|
APP_URL=http://localhost
|
|
APP_PORT=8000
|
|
APP_DEBUG=true
|
|
SSH_MUX_ENABLED=true
|
|
|
|
# PostgreSQL Database Configuration
|
|
DB_DATABASE=coolify
|
|
DB_USERNAME=coolify
|
|
DB_PASSWORD=password
|
|
DB_HOST=host.docker.internal
|
|
DB_PORT=5432
|
|
|
|
# Read/write replicas (optional). Set DB_READ_HOST to enable the read/write split.
|
|
# Hosts may be comma-separated. Port/username/password fall back to DB_* when unset.
|
|
# DB_READ_HOST=replica1,replica2
|
|
# DB_READ_PORT=5432
|
|
# DB_READ_USERNAME=coolify
|
|
# DB_READ_PASSWORD=
|
|
# DB_WRITE_HOST=
|
|
# DB_WRITE_PORT=5432
|
|
# DB_WRITE_USERNAME=coolify
|
|
# DB_WRITE_PASSWORD=
|
|
# DB_STICKY=true
|
|
|
|
# Enable Laravel Telescope for debugging
|
|
TELESCOPE_ENABLED=false
|
|
|
|
# Enable Laravel Debugbar (disabled by default; set true when needed)
|
|
DEBUGBAR_ENABLED=false
|
|
|
|
# Vite dev server. Defaults to localhost. For phone/LAN/Tailscale access, set to
|
|
# the host machine's reachable IP (e.g. VITE_HOST=100.75.155.70), then recreate vite.
|
|
VITE_HOST=localhost
|
|
VITE_PORT=5173
|
|
|
|
# Enable Laravel Nightwatch monitoring
|
|
NIGHTWATCH_ENABLED=false
|
|
NIGHTWATCH_TOKEN=
|
|
|
|
# Selenium Driver URL for Dusk
|
|
DUSK_DRIVER_URL=http://selenium:4444
|
|
|
|
# Special Keys for Andras
|
|
# For cache purging
|
|
BUNNY_API_KEY=
|
|
# For asset uploads
|
|
BUNNY_STORAGE_API_KEY=
|