Files
helpdesk-texnet/backend/.env.example
pettrop e4f63a135e Initial commit: Helpdesk application setup
- Backend: Node.js/TypeScript with Prisma ORM
- Frontend: Vite + TypeScript
- Project configuration and documentation

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-02-03 08:53:22 +01:00

20 lines
404 B
Plaintext

# Database
DATABASE_URL="postgresql://user:password@localhost:5432/helpdesk_db"
# JWT
JWT_SECRET="your-super-secret-key-change-this"
JWT_REFRESH_SECRET="your-refresh-secret-change-this"
JWT_EXPIRES_IN="15m"
JWT_REFRESH_EXPIRES_IN="7d"
# Server
PORT=3001
NODE_ENV="development"
# Frontend URL (for CORS)
FRONTEND_URL="http://localhost:5173"
# File Upload
UPLOAD_DIR="./uploads"
MAX_FILE_SIZE=10485760