.env 412 B

123456789101112131415161718
  1. DATABASE_URL="file:./database/db.sqlite"
  2. # Next Auth
  3. # You can generate a new secret on the command line with:
  4. # openssl rand -base64 32
  5. # https://next-auth.js.org/configuration/options#secret
  6. NEXTAUTH_URL="http://127.0.0.1:__PORT__"
  7. NEXTAUTH_SECRET="__SECRET__"
  8. # Disable analytics
  9. NEXT_PUBLIC_DISABLE_ANALYTICS="true"
  10. DEFAULT_COLOR_SCHEME="light"
  11. DOCKER_HOST="unix:///var/run/docker.sock"
  12. TZ=__TIMEZONE__