Switch from envrc → env format

Ref coop-cloud/abra#40
This commit is contained in:
3wc 2020-12-30 13:19:35 +02:00
parent 240830d9c7
commit 4a05f6b9d0
2 changed files with 25 additions and 25 deletions

25
.env.sample Normal file
View File

@ -0,0 +1,25 @@
APP=statuspal
DOMAIN=statuspal.example.com
## Domain aliases
#EXTRA_DOMAINS=', `www.statuspal.example.com`'
LETS_ENCRYPT_ENV=production
#### Must fill in:
SECRET_KEY_BASE=<insert here>
NODE_COOKIE=<insert here>
# Mailgun configs for sending emails, setup at https://www.mailgun.com/.
# If left blank email subscription to your status page will be disabled
MG_DOMAIN=
MG_API_KEY=
LOG_LEVEL=info
SP_SUBDOMAINS=false
NODE_IP=127.0.0.1
C_TITLE=Statuspal CE
C_DESCRIPTION=
SECRET_DB_PASSWORD_VERSION=v1
ENTRYPOINT_CONF_VERSION=v1

View File

@ -1,25 +0,0 @@
export APP=statuspal
export DOMAIN=statuspal.example.com
## Domain aliases
#export EXTRA_DOMAINS=', `www.statuspal.example.com`'
export LETS_ENCRYPT_ENV=production
#### Must fill in:
export SECRET_KEY_BASE=<insert here>
export NODE_COOKIE=<insert here>
# Mailgun configs for sending emails, setup at https://www.mailgun.com/.
# If left blank email subscription to your status page will be disabled
export MG_DOMAIN=
export MG_API_KEY=
export LOG_LEVEL=info
export SP_SUBDOMAINS=false
export NODE_IP=127.0.0.1
export C_TITLE=Statuspal CE
export C_DESCRIPTION=
export SECRET_DB_PASSWORD_VERSION=v1
export ENTRYPOINT_CONF_VERSION=v1