-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
36 lines (28 loc) · 1.01 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
# Set to "true" if in dev mode, everything else means prod mode
APP_DEV_MODE=true
# The hostname (or IP) and port the frontend is available through
# should contain protocol (http/https), domain, and port if not 80
# WARNING: this is also used for CORS validation
# PLEASE DO NOT ADD A TRAILING SLASH
FRONTEND_ORIGIN=https://paastech.cloud
# A secret string used to encrypt data into JWT tokens on sign in
JWT_SECRET="A secret string for the JWT token"
# Used by Prisma to connect to the database
DATABASE_URL="postgresql://api:[email protected]:5432/paastech"
# Mail module
MAILER_HOST="127.0.0.1"
MAILER_PORT=1025
MAILER_SECURE=false # should be either 'true' or anything else (evaluates to false)
MAILER_USER=api
MAILER_PASSWORD=api
# Git repo manager
GIT_HOST=localhost
GIT_PORT=50052
# Pome grenade
POMEGRANATE_HOST=ip6-localhost
POMEGRANATE_PORT=50051
# Seed data for development
DEV_USER_PASSWORD=PaastechDev1!
DEV_USER_A_PUBLIC_KEY="ssh-ed25519 ..."
DEV_USER_B_PUBLIC_KEY="ssh-ed25519 ..."