.env 429 B

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