-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
37 lines (28 loc) · 1.33 KB
/
.env.example
File metadata and controls
37 lines (28 loc) · 1.33 KB
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
30
31
32
33
34
35
36
37
# =============================================================================
# AUTHENTICATION
# =============================================================================
# GitHub Personal Access Token
# Generate at: https://github.com/settings/tokens
# Required scopes: repo, read:user
GITHUB_TOKEN=ghp_your_personal_access_token
# =============================================================================
# SERVER CONFIGURATION
# =============================================================================
PORT=3000
HOST=0.0.0.0
BASE_URL=http://localhost:3000
# =============================================================================
# DATABASE (SQLite)
# =============================================================================
# Path to SQLite database file (created automatically)
DATABASE_PATH=./data/argus.db
# =============================================================================
# CACHE
# =============================================================================
# Cache TTL in seconds (default: 60)
CACHE_TTL=60
# =============================================================================
# GIT OPERATIONS
# =============================================================================
# Directory for bare git clones used by range-diff (default: /tmp/argus-git-cache)
# GIT_CACHE_DIR=/tmp/argus-git-cache