2023-03-17 15:33:48 +01:00
|
|
|
############################################################################################################
|
|
|
|
# Development Environment
|
|
|
|
|
2023-03-18 17:59:37 +00:00
|
|
|
# User and group id for the user that will run the application inside the container
|
|
|
|
# Run in your terminal: `id -u` and `id -g` and that's the results
|
2023-03-17 15:33:48 +01:00
|
|
|
USERID=
|
2023-03-18 17:59:37 +00:00
|
|
|
GROUPID=
|
2023-05-03 13:05:31 +01:00
|
|
|
PROJECT_PATH_ON_HOST=/Users/your-username-here/code/coollabsio/coolify
|
2023-05-09 09:54:43 +02:00
|
|
|
SERVEO_URL=<for receiving webhooks locally https://serveo.net/>
|
2023-05-12 19:22:16 +01:00
|
|
|
MUX_ENABLED=false
|
2023-03-17 15:33:48 +01:00
|
|
|
############################################################################################################
|
|
|
|
|
2023-04-27 11:29:02 +02:00
|
|
|
APP_NAME=Coolify
|
2023-03-30 10:24:55 +01:00
|
|
|
APP_SERVICE=php
|
2023-03-17 15:33:48 +01:00
|
|
|
APP_ENV=local
|
|
|
|
APP_KEY=
|
|
|
|
APP_DEBUG=true
|
|
|
|
APP_URL=http://localhost
|
2023-03-27 20:10:10 +02:00
|
|
|
APP_PORT=8000
|
2023-04-12 22:19:03 +02:00
|
|
|
|
2023-04-27 14:50:42 +02:00
|
|
|
SESSION_DRIVER=database
|
2023-04-03 09:39:29 +01:00
|
|
|
DUSK_DRIVER_URL=http://selenium:4444
|
2023-03-17 15:33:48 +01:00
|
|
|
|
|
|
|
DB_CONNECTION=pgsql
|
|
|
|
DB_HOST=postgres
|
|
|
|
DB_PORT=5432
|
|
|
|
DB_DATABASE=coolify
|
2023-03-20 14:04:35 +00:00
|
|
|
DB_USERNAME=coolify
|
2023-03-17 15:33:48 +01:00
|
|
|
DB_PASSWORD=password
|
|
|
|
|
2023-05-10 09:26:25 +02:00
|
|
|
QUEUE_CONNECTION=redis
|
|
|
|
REDIS_HOST=coolify-redis
|