-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
29 lines (21 loc) · 1008 Bytes
/
Copy path.env.example
File metadata and controls
29 lines (21 loc) · 1008 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
28
29
# Airbrew configuration.
# Copy to .env and edit. Real environment variables take precedence over this file.
# HTTP listen address.
AIRBREW_HTTP_ADDR=:5050
# Public base URL (used for issuer / SPA origin).
AIRBREW_PUBLIC_URL=http://localhost:5050
# Data directory: DB + uploaded files live here. Defaults to ./data.
AIRBREW_DATA_DIR=./data
# SQLite database path. Defaults to <AIRBREW_DATA_DIR>/airbrew.db.
# AIRBREW_DATABASE_PATH=./data/airbrew.db
# HMAC secret for session cookies. MUST be at least 32 bytes in production.
# Generate one with: openssl rand -hex 32
AIRBREW_SESSION_SECRET=dev-insecure-session-secret-please-override-in-production
# Session lifetime. Defaults to 14 days.
# AIRBREW_SESSION_MAX_AGE=336h
# First-run bootstrap admin. If AIRBREW_BOOTSTRAP_ADMIN_PASSWORD is empty,
# a random one is generated and printed to stdout once.
AIRBREW_BOOTSTRAP_ADMIN_EMAIL=admin@airbrew.local
# AIRBREW_BOOTSTRAP_ADMIN_PASSWORD=
# Log level: debug, info, warn, error.
AIRBREW_LOG_LEVEL=info