mirror of
https://github.com/ajnart/homarr.git
synced 2026-01-30 03:09:19 +01:00
* feat: add winston logger * refactor: improve usage of winston logger overide, remove start.js file and logger.js file used for override * fix: formatting * fix: formatting
20 lines
852 B
Plaintext
20 lines
852 B
Plaintext
# Since .env is gitignored, you can use .env.example to build a new `.env` file when you clone the repo.
|
|
# Keep this file up-to-date when you add new variables to \`.env\`.
|
|
|
|
# This file will be committed to version control, so make sure not to have any secrets in it.
|
|
# If you are cloning this repo, create a copy of this file named `.env` and populate it with your secrets.
|
|
|
|
# The database URL is used to connect to your PlanetScale database.
|
|
DB_URL='FULL_PATH_TO_YOUR_SQLITE_DB_FILE'
|
|
|
|
# @see https://next-auth.js.org/configuration/options#nextauth_url
|
|
AUTH_URL='http://localhost:3000'
|
|
|
|
# You can generate the secret via 'openssl rand -base64 32' on Unix
|
|
# @see https://next-auth.js.org/configuration/options#secret
|
|
AUTH_SECRET='supersecret'
|
|
|
|
TURBO_TELEMETRY_DISABLED=1
|
|
|
|
# Configure logging to use winston logger
|
|
NODE_OPTIONS='-r @homarr/log/override' |