|
| 1 | +####################################### |
| 2 | +# Project environment variables |
| 3 | +####################################### |
| 4 | + |
| 5 | +# Should be same with downloaded and configured docker-shared-services |
| 6 | +# Default: ss - ([S]hared [S]ervices) |
| 7 | +# More info in repository docs: https://github.com/wayofdev/docker-shared-services |
| 8 | +SHARED_SERVICES_NAMESPACE=${SHARED_SERVICES_NAMESPACE} |
| 9 | + |
| 10 | +# Should be same with downloaded and configured docker-project-services |
| 11 | +# Default: wod |
| 12 | +# More info in repository docs: https://github.com/wayofdev/docker-project-services |
| 13 | +PROJECT_SERVICES_NAMESPACE=${PROJECT_SERVICES_NAMESPACE} |
| 14 | + |
| 15 | +# https://docs.docker.com/compose/reference/envvars/#compose_project_name |
| 16 | +# With custom namespace provided, it will be used to prefix all services |
| 17 | +# in Docker network for current project |
| 18 | +COMPOSE_PROJECT_NAME=${COMPOSE_PROJECT_NAME} |
| 19 | + |
| 20 | +####################################### |
| 21 | +# Laravel default environment variables |
| 22 | +####################################### |
| 23 | + |
| 24 | +APP_NAME=${APP_NAME} |
| 25 | +APP_ENV=local |
| 26 | +APP_KEY= |
| 27 | +APP_DEBUG=true |
| 28 | +APP_URL=https://api.${COMPOSE_PROJECT_NAME}.docker |
| 29 | + |
| 30 | +LOG_CHANNEL=stack |
| 31 | +LOG_DEPRECATIONS_CHANNEL=null |
| 32 | +LOG_LEVEL=debug |
| 33 | + |
| 34 | +DB_CONNECTION=pgsql |
| 35 | +DB_HOST=127.0.0.1 |
| 36 | +DB_PORT=3306 |
| 37 | +DB_DATABASE=wod |
| 38 | +DB_USERNAME=wod |
| 39 | +DB_PASSWORD=password |
| 40 | + |
| 41 | +CACHE_DRIVER=file |
| 42 | +FILESYSTEM_DISK=local |
| 43 | +QUEUE_CONNECTION=sync |
| 44 | +SESSION_DRIVER=file |
| 45 | +SESSION_LIFETIME=120 |
| 46 | + |
| 47 | +MEMCACHED_HOST=127.0.0.1 |
| 48 | + |
| 49 | +REDIS_HOST=127.0.0.1 |
| 50 | +REDIS_PASSWORD=null |
| 51 | +REDIS_PORT=6379 |
| 52 | + |
| 53 | +MAIL_MAILER=smtp |
| 54 | +MAIL_HOST=mailpit |
| 55 | +MAIL_PORT=1025 |
| 56 | +MAIL_USERNAME=null |
| 57 | +MAIL_PASSWORD=null |
| 58 | +MAIL_ENCRYPTION=null |
| 59 | +MAIL_FROM_ADDRESS="[email protected]" |
| 60 | +MAIL_FROM_NAME="${APP_NAME}" |
| 61 | + |
| 62 | +AWS_ACCESS_KEY_ID= |
| 63 | +AWS_SECRET_ACCESS_KEY= |
| 64 | +AWS_DEFAULT_REGION=us-east-1 |
| 65 | +AWS_BUCKET= |
| 66 | +AWS_USE_PATH_STYLE_ENDPOINT=false |
| 67 | + |
| 68 | +####################################### |
| 69 | +# Sentry |
| 70 | +####################################### |
| 71 | + |
| 72 | +SENTRY_LARAVEL_DSN=https://[email protected]/1234567890 |
| 73 | +SENTRY_TRACES_SAMPLE_RATE=1.0 |
| 74 | + |
| 75 | +####################################### |
| 76 | +# Deployer |
| 77 | +####################################### |
| 78 | + |
| 79 | +# Create slack app and add incoming webhook urls |
| 80 | +# https://api.slack.com/messaging/webhooks |
| 81 | +DEPLOYER_STAGING_SLACK_WEBHOOK=https://hooks.slack.com/services/XXXXXXX/XXXXX/XXXXXX |
| 82 | +DEPLOYER_STAGING_REMOTE_USER=staging-xxxxx |
| 83 | +DEPLOYER_STAGING_HOST=staging.laravel-starter-tpl.wayof.dev |
| 84 | +DEPLOYER_STAGING_BRANCH=develop |
| 85 | + |
| 86 | +DEPLOYER_PROD_SLACK_WEBHOOK=https://hooks.slack.com/services/XXXXXXX/XXXXX/XXXXXX |
| 87 | +DEPLOYER_PROD_REMOTE_USER=prod-xxxxx |
| 88 | +DEPLOYER_PROD_HOST=prod.laravel-starter-tpl.wayof.dev |
| 89 | +DEPLOYER_PROD_BRANCH=master |
| 90 | + |
| 91 | +# https://wayofdev.sentry.io/settings/account/api/auth-tokens/ |
| 92 | +DEPLOYER_SENTRY_TOKEN=50b88fxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx |
| 93 | +DEPLOYER_SENTRY_ORG=wayofdev |
| 94 | +DEPLOYER_SENTRY_PROJECT=laravel-starter-tpl |
| 95 | +DEPLOYER_SENTRY_SERVER=https://wayofdev.sentry.io |
0 commit comments