peisear 0.1.0

A minimal, sophisticated, solid, and easy issue tracker.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Connection string for the SQLite database.
# The parent directory is auto-created on startup.
DATABASE_URL=sqlite://data/app.db

# HMAC secret for JWT session tokens.
# MUST be a long random string in production.
#   openssl rand -base64 48
JWT_SECRET=change-me-to-a-long-random-string

# Interface to bind. Use 127.0.0.1:3000 for localhost-only.
BIND_ADDR=0.0.0.0:3000

# Set to "1" when serving over HTTPS so the session cookie gets the
# `Secure` flag. Leave unset or "0" for plain-HTTP local development.
COOKIE_SECURE=0

# Logging. Uncomment to tweak.
# RUST_LOG=info,sqlx=warn,hyper=warn