12 lines
318 B
Bash
12 lines
318 B
Bash
# MongoDB Connection Options
|
|
DATABASE_URL=mongodb://localhost:27017
|
|
DATABASE_NAME=stick_db
|
|
|
|
# Cryptography Settings
|
|
# Ensure this secret is a strong, random character sequence in production
|
|
JWT_SECRET=super_secret_template_signing_key_that_is_at_least_32_characters_long
|
|
|
|
# Web Server Options
|
|
HOST=127.0.0.1
|
|
PORT=3000
|