-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathenv.example
More file actions
31 lines (31 loc) · 874 Bytes
/
env.example
File metadata and controls
31 lines (31 loc) · 874 Bytes
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
#api key for mailing service
MAILGUN_API_KEY=***
#mailgun domain
MAILGUN_DOMAIN=code3scape.com
#testing port for jest
TEST_PORT=30300
#sequelize host adress
HOST=104.168.169.204
#sequelize postgres username
PG_USER=***
#sequelize postgres database name
DATABASE=***
#sequelize database password
PASSWORD=***
#sequelize allow to alter database: true/false
ALTER_DB=true
#password for session-express
SECRET=***
#Neo4j graph database url
NEO4J_URL=neo4j://104.168.169.204
#Neo4j username
NEO4J_USER=***
#Neo4j password
NEO4J_PASSWORD=***
#production/development flag, in jest tests this varible is "test" by default
NODE_ENV = development
#local port, default value 3052
PORT = 3052
#hostname adress, default is https://learndatabases.dev,
#if you want to use localhost you need to specify port, for example http://localhost:4000
HOSTNAME = https://learndatabases.dev