forked from StellarSplit/StellarSplit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
39 lines (32 loc) · 720 Bytes
/
Copy path.env.example
File metadata and controls
39 lines (32 loc) · 720 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
32
33
34
35
36
37
38
39
# NestJS
NODE_ENV=development
PORT=3000
# PostgreSQL
DB_HOST=localhost
DB_PORT=5432
DB_USERNAME=postgres
DB_PASSWORD=postgres
DB_NAME=stellarsplit_dev
DB_SYNCHRONIZE=true
DB_LOGGING=true
# Redis / Bull queues
REDIS_HOST=localhost
REDIS_PORT=6379
# REDIS_URL=redis://default:password@localhost:6379
# Application URLs
APP_URL=http://localhost:3000
FRONTEND_URL=http://localhost:5173
# Auth / WebSockets
JWT_SECRET=change-me
# Stellar
STELLAR_NETWORK=testnet
# Email (optional)
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=2525
MAIL_USER=
MAIL_PASS=
# API Documentation
SWAGGER_PATH=/api/docs
SWAGGER_TITLE=StellarSplit API
SWAGGER_DESCRIPTION=API for StellarSplit - Split bills instantly with crypto
SWAGGER_VERSION=1.0.0