-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env
39 lines (35 loc) · 856 Bytes
/
.env
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
# Postgres Live
API_SECRET=98hbun98h #Used when creating a JWT. It can be anything
DB_HOST=127.0.0.1
DB_DRIVER=postgres
DB_USER=postgres
DB_PASSWORD=Q1w2e3r4
DB_NAME=golang
DB_PORT=5432 #Default postgres port
# Used by pgadmin service
PGADMIN_DEFAULT_PASSWORD=password
# Postgres Test
TestApiSecret=98hbun98h
#TestDbHost=127.0.0.1
TestDbDriver=postgres
TestDbUser=postgres
TestDbPassword=Q1w2e3r4
TestDbName=golang_test
TestDbPort=5432
# Mysql Live
# API_SECRET=98hbun98h #Used when creating a JWT. It can be anything
# DB_HOST=127.0.0.1
# DB_DRIVER=mysql
# DB_USER=root
# DB_PASSWORD=
# DB_NAME=fullstack_api
# DB_PORT=3306 #Default mysql port
# Mysql Test
# TestApiSecret=98hbun98h
# TestDbHost=127.0.0.1
# TestDbDriver=mysql
# TestDbUser=root
# TestDbPassword=
# TestDbName=fullstack_api_test
# TestDbPort=3306