bonfire-app/flavours/classic/config/templates/not_secret.env

41 lines
1.1 KiB
Bash
Raw Normal View History

2022-05-23 02:20:39 +00:00
## SECRET CONFIG VARIABLES
2021-04-08 18:19:52 +00:00
# COPY this file to /config/{dev|prod}/secrets.env and change ALL the values
2022-05-23 02:20:39 +00:00
# make sure you change everything to your own secrets and do not check this into git or any public host!
2021-04-08 18:19:52 +00:00
2021-06-04 08:02:25 +00:00
# for sessions/cookies, you can generate strings for these by running: make secrets
2021-04-15 18:12:21 +00:00
SECRET_KEY_BASE="you-should-put-a-secure-string-here"
SIGNING_SALT="you-should-put-a-different-secure-string-here"
ENCRYPTION_SALT="you-should-put-yet-another-secure-string-here"
2021-04-08 18:19:52 +00:00
2021-07-27 07:31:58 +00:00
# sentry client key
SENTRY_DSN=put-your-sentry-dsn-here
2021-04-08 18:19:52 +00:00
# database access
POSTGRES_USER=postgres
POSTGRES_DB=bonfire_db
POSTGRES_PASSWORD=put_a_secure_db_pw_here
# signup to mailgun.com and edit with your domain and API key
2021-06-19 14:22:13 +00:00
MAIL_DOMAIN=mailg.example.com
2021-04-08 18:19:52 +00:00
MAIL_KEY=123
2021-06-19 14:22:13 +00:00
MAIL_FROM=bonfire@example.com
2021-04-08 18:19:52 +00:00
# password for the search index
MEILI_MASTER_KEY=key-to-protect-search-indexing-here
# password for the default admin user if you run the seeds
SEEDS_USER=root
SEEDS_PW=password
# backend stuff
ERLANG_COOKIE=bonfire_cookie
# Bonfire extensions configs
WEB_PUSH_SUBJECT=mailto:administrator@mydomain.net
WEB_PUSH_PUBLIC_KEY=xyz
WEB_PUSH_PRIVATE_KEY=abc
GEOLOCATE_OPENCAGEDATA=
2022-05-23 02:20:39 +00:00
GITHUB_TOKEN=xyz