-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env
35 lines (32 loc) · 825 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
# Postgres Live
API_SECRET=$&96$hello$&96$hello$&96$ #Used when creating a JWT. It can be anything
DB_HOST=127.0.0.1
DB_DRIVER=postgres
DB_USER=postgres
DB_PASSWORD=Allahakbar
DB_NAME=apigolang
DB_PORT=5432 #Default postgres port
# Postgres Test
TestApiSecret=$&96$hello$&96$hello$&96$
TestDbHost=127.0.0.1
TestDbDriver=postgres
TestDbUser=postgres
TestDbPassword=Allahakbar
TestDbName=fullstack_api_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=username
# DB_PASSWORD=password
# DB_NAME=fullstack_api
# DB_PORT=3306 #Default mysql port
# Mysql Test
# TestApiSecret=98hbun98h
# TestDbHost=127.0.0.1
# TestDbDriver=mysql
# TestDbUser=username
# TestDbPassword=password
# TestDbName=fullstack_api_test
# TestDbPort=3306