Feature: Syncing composer .env.example and docker-compose.dev.yml from starter

This commit is contained in:
2026-07-09 01:09:44 +03:00
parent cbad03bf8f
commit a2caa43bc9
5 changed files with 152 additions and 73 deletions
+12 -11
View File
@@ -1,6 +1,6 @@
# Unique per VPS deployment: namespaces containers/volumes/networks and the built image tag,
# so multiple sites from this same starter can coexist on one host without collisions.
COMPOSE_PROJECT_NAME=boboko-starter
COMPOSE_PROJECT_NAME=3dealer
APP_NAME=Laravel
APP_ENV=local
@@ -25,11 +25,11 @@ LOG_DEPRECATIONS_CHANNEL=null
LOG_LEVEL=debug
DB_CONNECTION=pgsql
DB_HOST=127.0.0.1
DB_HOST=postgres
DB_PORT=5432
DB_DATABASE=boboko
DB_USERNAME=root
DB_PASSWORD=
DB_PASSWORD=dev
SESSION_DRIVER=database
SESSION_LIFETIME=120
@@ -47,14 +47,14 @@ CACHE_STORE=database
MEMCACHED_HOST=127.0.0.1
REDIS_CLIENT=phpredis
REDIS_HOST=127.0.0.1
REDIS_HOST=valkey
REDIS_PASSWORD=null
REDIS_PORT=6379
MAIL_MAILER=log
MAIL_MAILER=smtp
MAIL_SCHEME=null
MAIL_HOST=127.0.0.1
MAIL_PORT=2525
MAIL_HOST=mailpit
MAIL_PORT=1025
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_FROM_ADDRESS="hello@example.com"
@@ -68,17 +68,18 @@ AWS_USE_PATH_STYLE_ENDPOINT=false
VITE_APP_NAME="${APP_NAME}"
OTEL_SERVICE_NAME=
OTEL_SERVICE_NAME=boboko-starter
OTEL_EXPORTER_OTLP_PROTOCOL=http/protobuf
OTEL_PROPAGATORS=baggage,tracecontext
OTEL_PHP_AUTOLOAD_ENABLED=true
OTEL_EXPORTER_OTLP_ENDPOINT=
STOIC_SECRET=
STOIC_SSO_SECRET=
# Stoic is the headless CMS, proxied at /stoic/ behind the app in prod (see docker/nginx/prod.conf)
STOIC_SECRET=dev-secret-change-me
STOIC_SSO_SECRET=dev-sso-secret-change-me
STOIC_HOST=http://localhost:2727
# Host-side ports (change per app if multiple apps share this VPS, or per dev checkout)
# Host-side ports change these if another project on this machine already uses the defaults
APP_PORT=8090
STOIC_PORT=2727
VALKEY_PORT=6339