blink/backend/apis/nodejs/.env

14 lines
297 B
Bash
Raw Normal View History

2023-10-16 14:49:30 +02:00
# Blink configuration file
2023-10-13 10:37:09 +02:00
2023-10-16 14:49:30 +02:00
# API server settings
2023-10-13 10:37:09 +02:00
API_SERVER_PORT = 3000
2023-10-16 15:35:37 +02:00
JWT_SECRET_KEY = jwt-secret # Change this
2023-10-13 10:37:09 +02:00
2023-10-16 14:49:30 +02:00
# Database settings
2023-10-13 10:37:09 +02:00
POSTGRES_SERVER = localhost
POSTGRES_USERNAME = postgres
POSTGRES_PASSWORD = postgres
2023-10-16 14:49:30 +02:00
POSTGRES_PORT = 5432
# Application settings
2023-10-17 21:54:37 +02:00
ALLOW_USER_REGISTRATION = true