Files
mRemotify/.env.example
2026-03-01 12:13:12 +01:00

19 lines
467 B
Plaintext

# 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=change-me-to-a-secure-jwt-secret
# 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