Compare commits
No commits in common. "ce78691f3301c59d14c5dca9d3383c986a727730" and "f22e940279fd441c02b4f831764526e8552ba72c" have entirely different histories.
ce78691f33
...
f22e940279
3 changed files with 1 additions and 87 deletions
87
.env-dev
87
.env-dev
|
@ -1,87 +0,0 @@
|
||||||
#######################################
|
|
||||||
###### App ######
|
|
||||||
#######################################
|
|
||||||
APP_NAME=Cup
|
|
||||||
APP_ENV=local # local | testing | production
|
|
||||||
APP_DEBUG_MODE=true
|
|
||||||
App_HTTP_HOST=localhost
|
|
||||||
App_HTTP_PORT=8080
|
|
||||||
App_USE_HTTPS=false
|
|
||||||
App_USE_LETSENCRYPT=false
|
|
||||||
App_USE_CORESERVICES=false
|
|
||||||
APP_LETSENCRYPT_EMAIL=mail@example.com
|
|
||||||
App_HTTPS_HOSTS=example.com, www.example.com
|
|
||||||
App_REDIRECT_HTTP_TO_HTTPS=false
|
|
||||||
App_CERT_FILE_PATH=tls/server.crt
|
|
||||||
App_KEY_FILE_PATH=tls/server.key
|
|
||||||
|
|
||||||
#######################################
|
|
||||||
###### TEMPLATES ######
|
|
||||||
#######################################
|
|
||||||
TEMPLATE_ENABLE=true
|
|
||||||
COOKIE_SECRET=13d6b4dff8f84a10851021ec8608f814570d562c92fe6b5ec4c9f595bcb3234b
|
|
||||||
|
|
||||||
#######################################
|
|
||||||
###### JWT ######
|
|
||||||
#######################################
|
|
||||||
JWT_SECRET=dkfTgonmgaAdlgkw
|
|
||||||
JWT_LIFESPAN_MINUTES=4320 # expires after 3 days
|
|
||||||
|
|
||||||
#######################################
|
|
||||||
###### DATABASE ######
|
|
||||||
#######################################
|
|
||||||
DB_DRIVER=sqlite # mysql | postgres | sqlite
|
|
||||||
#_____ MYSQL _____#
|
|
||||||
MYSQL_HOST=db-host-here
|
|
||||||
MYSQL_DB_NAME=db-name-here
|
|
||||||
MYSQL_PORT=3306
|
|
||||||
MYSQL_USERNAME=db-user-here
|
|
||||||
MYSQL_PASSWORD=db-password-here
|
|
||||||
MYSQL_CHARSET=utf8mb4
|
|
||||||
|
|
||||||
#_____ postgres _____#
|
|
||||||
POSTGRES_HOST=localhost
|
|
||||||
POSTGRES_USER=user
|
|
||||||
POSTGRES_PASSWORD=secret
|
|
||||||
POSTGRES_DB_NAME=db_test
|
|
||||||
POSTGRES_PORT=5432
|
|
||||||
POSTGRES_SSL_MODE=disable
|
|
||||||
POSTGRES_TIMEZONE=America/Argentina/Buenos_Aires
|
|
||||||
|
|
||||||
#_____ SQLITE _____#
|
|
||||||
SQLITE_DB_PATH=storage/sqlite/sqlite.db
|
|
||||||
|
|
||||||
#######################################
|
|
||||||
###### CACHE ######
|
|
||||||
#######################################
|
|
||||||
CACHE_DRIVER=redis
|
|
||||||
REDIS_HOST=localhost
|
|
||||||
REDIS_PORT=6379
|
|
||||||
REDIS_PASSWORD=
|
|
||||||
REDIS_DB=0
|
|
||||||
|
|
||||||
#######################################
|
|
||||||
###### Emails ######
|
|
||||||
#######################################
|
|
||||||
EMAILS_DRIVER=smtp # smtp | sparkpost | sendgrid | mailgun
|
|
||||||
#_____ SMTP _____#
|
|
||||||
SMTP_HOST=
|
|
||||||
SMTP_PORT=25
|
|
||||||
SMTP_USERNAME=
|
|
||||||
SMTP_PASSWORD=
|
|
||||||
SMTP_TLS_SKIP_VERIFY_HOST=true # (set true for development only!)
|
|
||||||
|
|
||||||
#_____ sparkpost _____#
|
|
||||||
SPARKPOST_BASE_URL=https://api.sparkpost.com
|
|
||||||
SPARKPOST_API_VERSION=1
|
|
||||||
SPARKPOST_API_KEY=sparkpost-api-key-here # the api key
|
|
||||||
|
|
||||||
#_____ sendgrid _____#
|
|
||||||
SENDGRID_HOST=https://api.sendgrid.com
|
|
||||||
SENDGRID_ENDPOINT=/v3/mail/send
|
|
||||||
SENDGRID_API_KEY=sendgrid-api-key-here # the api key
|
|
||||||
|
|
||||||
#_____ mailgun _____#
|
|
||||||
MAILGUN_DOMAIN=your-domain.com # your domain
|
|
||||||
MAILGUN_API_KEY=mailgun-api-key-here # the api key
|
|
||||||
MAILGUN_TLS_SKIP_VERIFY_HOST=true # (set true for development only!)
|
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,5 +1,6 @@
|
||||||
.air.toml
|
.air.toml
|
||||||
.env
|
.env
|
||||||
|
.env-dev
|
||||||
tmp/*
|
tmp/*
|
||||||
logs/*
|
logs/*
|
||||||
!logs/.gitkeep
|
!logs/.gitkeep
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 1.7 MiB |
Loading…
Reference in a new issue