16 lines
325 B
Plaintext
16 lines
325 B
Plaintext
# Server Configuration
|
|
PORT=3000
|
|
|
|
# Database
|
|
DB_PATH=./db/dev.db
|
|
|
|
# Authentication
|
|
# Generate a secure random secret: openssl rand -hex 32
|
|
JWT_SECRET=change_me_to_a_secure_random_string
|
|
|
|
# Cookie Settings
|
|
# Set your domain for production (e.g., .example.com)
|
|
COOKIE_DOMAIN=
|
|
# Set to true when using HTTPS
|
|
COOKIE_SECURE=false
|