31 lines
1.1 KiB
Bash
31 lines
1.1 KiB
Bash
# This file contains config that is not checked into git. See resources/config.edn for more config
|
|
# options.
|
|
|
|
# Where will your app be deployed?
|
|
DOMAIN=example.com
|
|
|
|
# Postmark is used to send email sign-in links. Sign up at https://postmarkapp.com/
|
|
POSTMARK_API_KEY=
|
|
# Change to the address of your sending identity. Set a reply-to address on your sending identity if
|
|
# you want to receive replies and your from address isn't configured for receiving.
|
|
POSTMARK_FROM=
|
|
|
|
# Recaptcha is used to protect your sign-in page from bots. Go to
|
|
# https://www.google.com/recaptcha/about/ and add a site. Select v2 invisible. Add localhost and the
|
|
# value of DOMAIN above to your list of allowed domains.
|
|
RECAPTCHA_SITE_KEY=
|
|
RECAPTCHA_SECRET_KEY=
|
|
|
|
# What port should the nrepl server be started on (in dev and prod)?
|
|
NREPL_PORT=7888
|
|
|
|
|
|
## Autogenerated. Create new secrets with `clj -M:dev generate-secrets`
|
|
|
|
# Used to encrypt session cookies.
|
|
COOKIE_SECRET={{ new-secret 16 }}
|
|
# Used to encrypt email sign-in links.
|
|
JWT_SECRET={{ new-secret 32 }}
|
|
|
|
DEV_POSTGRES_URL=postgresql://user:abc123@localhost:5432/main
|
|
#PROD_POSTGRES_URL=...
|