-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
27 lines (22 loc) · 848 Bytes
/
env.example
File metadata and controls
27 lines (22 loc) · 848 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# This is an example of a .env file for the Text Review app.
# Please rename this file to .env and fill in the values.
# The variables have been categorized by auth, app, api and database.
# --- Auth
# Ensure these values are strong, unique, and kept secret.
AUTH_GOOGLE_ID=xyz
AUTH_GOOGLE_SECRET=xyz
# Used for session signing/encryption, must be a long random string
AUTH_SECRET=xyz
# --- App
# We use Winston for logging. Look for potential log levels here: https://github.com/winstonjs/winston
LOG_LEVEL=debug
# --- API
# All allowed origins for CORS (comma-separated if multiple)
ALLOWED_ORIGINS=http://localhost:3000
# --- Database
DATABASE_URL=postgresql://USER:PASSWORD@HOST:PORT/DATABASE?schema=public
# --- Grafana Loki
# The LOKI_API_KEY needs logs_write access
LOKI_HOST=loki_host
LOKI_USERNAME=loki_user
LOKI_API_KEY=loki_password