.env.docker.example 826 B

12345678910111213141516171819202122
  1. # Docker-based deployment (docker-compose)
  2. # Copy this file to ".env.docker" and adjust values.
  3. #
  4. # NOTE: Never commit real secrets. Use placeholders in this example file.
  5. # MongoDB connection string inside the docker-compose network.
  6. # "mongo" should match the MongoDB service name in docker-compose.yml.
  7. MONGODB_URI=mongodb://mongo:27017/rhl_lieferscheine
  8. # Secret used to sign session JWT cookies.
  9. # Requirements: strong + random, at least 32 characters, never committed.
  10. # Example generation:
  11. # openssl rand -base64 48
  12. SESSION_SECRET=replace-me-with-a-long-random-secret-string-at-least-32-chars
  13. # Must match the mount target inside the app container (read-only mount recommended).
  14. NAS_ROOT_PATH=/mnt/niederlassungen
  15. NODE_ENV=production
  16. # Optional. Only needed if you run the app on a non-default port.
  17. # PORT=3000