Initial commit
This commit is contained in:
20
.env.example
Normal file
20
.env.example
Normal file
@@ -0,0 +1,20 @@
|
||||
# Server Configuration
|
||||
PORT=3000
|
||||
ENVIRONMENT=development
|
||||
|
||||
# Database Configuration
|
||||
# Possible values for DATABASE_DRIVER: sqlite, postgres
|
||||
DATABASE_DRIVER=sqlite
|
||||
DATABASE_PATH=./data/database.sqlite
|
||||
|
||||
# PostgreSQL Configuration (Only if DATABASE_DRIVER is postgres)
|
||||
POSTGRES_HOST=localhost
|
||||
POSTGRES_PORT=5432
|
||||
POSTGRES_USER=trace
|
||||
POSTGRES_PASSWORD=trace123
|
||||
POSTGRES_DB=trace
|
||||
POSTGRES_SSLMODE=disable
|
||||
|
||||
# JWT Configuration
|
||||
JWT_SECRET=your-secret-key-here-change-in-production
|
||||
JWT_EXPIRE=7200
|
||||
Reference in New Issue
Block a user