-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
45 lines (36 loc) · 1.16 KB
/
.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# DO NOT PUT SENSITIVE PASSWORDS, KEYS, ETC. IN THIS FILE!
# Create a .env file and use that for entering sensitive, env-specific variables
# Ensure that .env is ignored by git
NODE_ENV='development'
PORT=3000
# Firebase/GCP
## Set the environment variable GOOGLE_APPLICATION_CREDENTIALS to the file path of the JSON file that contains your service account key.
## See https://firebase.google.com/docs/admin/setup#initialize_the_sdk for more details.
GOOGLE_APPLICATION_CREDENTIALS=
# Omnivore
## We need both dev and prod keys to allow for an environment where Virtual POS and production restaurants co-exist
## TODO: Only use one env var for the api key
OMNIVORE_API_KEY_DEV=
OMNIVORE_API_KEY_PROD=
# MySQL Database
MYSQL_DATABASE=
MYSQL_USER=
MYSQL_PASSWORD=
MYSQL_ROOT_PASSWORD=
MYSQL_HOST=
# Spreedly
SPREEDLY_ENVIRONMENT_KEY=
SPREEDLY_ACCESS_KEY=
SPREEDLY_RECEIVER_TOKEN=
# Ably
ABLY_KEY=
# TypeORM
# Only set FORCE_SYNCHRONIZATION to true if you want TypeORM to auto-update the DB schema
# DO NOT USE IN PRODUCTION!
FORCE_SYNCHRONIZATION=false
# Twilio credentials and number to send messages from
TWILIO_ACCOUNT_SID=
TWILIO_AUTH_TOKEN=
TWILIO_FROM_NUM=
# Sentry
SENTRY_DSN=