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
|
2024-02-15 10:41:34 +01:00
|
|
|
JWT_SECRET_KEY = jwt-secret # Change this in production
|
|
|
|
LIMITER_WINDOW = 3600000 # Milliseconds in limiter window
|
2024-02-15 12:56:54 +01:00
|
|
|
LIMITER_MAXIMUM_PER_WINDOW = 5000 # Requests for each limiter window
|
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
|