generated from amosproj/amos202Xss0Y-projname
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.env.example
32 lines (28 loc) · 1.02 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
# Port number where the backend server will run
BACKEND_PORT=3333
# Hostname for the backend server
BACKEND_HOST=localhost
# Name of the backend application
BACKEND_NAME=MyApp
# Hostname for the PostgreSQL database
POSTGRES_HOST=localhost
# Port number for the PostgreSQL database
POSTGRES_PORT=5432
# Username for accessing the PostgreSQL database
POSTGRES_USER=amos
# Password for the PostgreSQL database user
POSTGRES_PASSWORD=amos
# Name of the PostgreSQL database to be used
POSTGRES_DB=amos
# Full database connection URL constructed from the above PostgreSQL variables used for Prisma
DATABASE_URL=postgres://${POSTGRES_USER}:${POSTGRES_PASSWORD}@${POSTGRES_HOST}:${POSTGRES_PORT}/${POSTGRES_DB}
# The Api Url for the Insight Hub API
INSIGHT_HUB_API_URL=https://gateway.eu1.mindsphere.io/api
# The Api Key for the Insight Hub API
INSIGHT_HUB_API_KEY=KEY
# Frontend
XD_API_URL=http://${BACKEND_HOST}:${BACKEND_PORT}
SECRET_KEY=askIngo
# Swagger
# Just the subpath of the URL where the Swagger UI will be available
SWAGGER_URL_PATH=swagger