19 lines
499 B
Bash
19 lines
499 B
Bash
# PostgreSQL connection URL
|
|
POSTGRES_URL=postgresql://mremotify:mremotify@localhost:5432/mremotify
|
|
|
|
# AES-256 encryption key for passwords (must be exactly 32 characters)
|
|
ENCRYPTION_KEY=change-me-to-a-random-32char-key!
|
|
|
|
# JWT signing secret
|
|
JWT_SECRET=c4baf6aca61629fcdf2285be2162e662ffec79a5db4e24d8bad2556f6f10c8c5
|
|
|
|
# Default admin credentials (used during first-time seeding)
|
|
ADMIN_USER=admin
|
|
ADMIN_PASSWORD=admin123
|
|
|
|
# RDP daemon WebSocket URL
|
|
RDPD_URL=ws://rdpd:7777
|
|
|
|
# Backend port
|
|
PORT=3000
|