21 lines
524 B
Plaintext
21 lines
524 B
Plaintext
# Database
|
|
DATABASE_URL=postgres://postgres:postgres@localhost:5432/fiscal
|
|
POSTGRES_USER=postgres
|
|
POSTGRES_PASSWORD=postgres
|
|
POSTGRES_DB=fiscal
|
|
POSTGRES_HOST=localhost
|
|
|
|
# Backend
|
|
PORT=3001
|
|
NODE_ENV=development
|
|
JWT_SECRET=change-this-to-a-random-secret-key
|
|
BETTER_AUTH_SECRET=change-this-to-a-random-secret-key
|
|
BETTER_AUTH_BASE_URL=http://localhost:3001
|
|
FRONTEND_URL=http://localhost:3000
|
|
|
|
# Frontend
|
|
NEXT_PUBLIC_API_URL=http://localhost:3001
|
|
|
|
# OpenClaw Integration
|
|
OPENCLAW_WEBHOOK_URL=https://discord.com/api/webhooks/...
|