# ─── UOMysticmoon server — local dev environment ─── # Copy to server/.env for running `npm run dev` outside Docker. # (In Docker, the root .env / docker-compose provides these instead.) NODE_ENV=development PORT=3000 # Logging — written to BOTH the console and a log file (default /logs/app.log). LOG_LEVEL=debug # console verbosity: error | warn | info | debug FILE_LOG_LEVEL=debug # file verbosity LOG_TO_FILE=true # set false for console-only # LOG_DIR= # defaults to server/logs # LOG_FILE=app.log # Point at a local or Dockerized MariaDB DB_HOST=127.0.0.1 DB_PORT=3306 DB_NAME=uomysticmoon DB_USER=uomm DB_PASSWORD=change-me-db-password JWT_SECRET=dev-only-change-me JWT_EXPIRES_IN=1d COOKIE_SECURE=auto COOKIE_NAME=uomm_token # Created on first boot if the users table is empty ADMIN_USERNAME=admin ADMIN_PASSWORD=change-me-admin-password SMTP_HOST= SMTP_PORT=587 SMTP_USER= SMTP_PASS= CONTACT_TO=UOMysticmoon@gmail.com CLIENT_ORIGIN=http://localhost:5173