-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.env.example
More file actions
20 lines (17 loc) · 639 Bytes
/
.env.example
File metadata and controls
20 lines (17 loc) · 639 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# TwiCC configuration
#
# This file should be placed in the data directory:
# - Default: ~/.twicc/.env
# - Override: $TWICC_DATA_DIR/.env
# - In a git worktree: <worktree_root>/.env (automatic)
#
# To override the data directory (database, logs, config), set:
# export TWICC_DATA_DIR=/path/to/data
# Backend port (Uvicorn server)
TWICC_PORT=3500
# Frontend port (Vite dev server)
VITE_PORT=5173
# Password protection (optional)
# Set a SHA-256 hash to protect the app. Leave empty or remove for open access.
# Generate with: python -c "import hashlib; print(hashlib.sha256(b'your_password').hexdigest())"
# TWICC_PASSWORD_HASH=