-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.env.example
More file actions
38 lines (34 loc) · 1.73 KB
/
.env.example
File metadata and controls
38 lines (34 loc) · 1.73 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
38
# ==============================================================================
# Application Configuration
# ==============================================================================
# Defines the environment in which the application is running.
# Allowed values: "development", "staging", "production"
NODE_ENV="development"
# ------------------------------------------------------------------------------
# Authentication
# ------------------------------------------------------------------------------
# Secret key used for signing and verifying JWT tokens.
# Generate a new key before deploying to staging/production:
# node -e "console.log(require('crypto').randomBytes(32).toString('hex'))"
JWT_SECRET="__CHANGE_ME__"
# ------------------------------------------------------------------------------
# Logging
# ------------------------------------------------------------------------------
# Defines the level of logging detail.
# Available options:
# - fatal : Critical errors causing application shutdown
# - error : Errors that require attention
# - warn : Warnings that may indicate potential issues
# - info : General informational messages
# - debug : Debugging messages (development use)
# - trace : Highly detailed trace messages
# - silent : Disable all logging
LOG_LEVEL="debug"
# ==============================================================================
# Cloudflare Integration
# ==============================================================================
# Cloudflare account identifier.
CLOUDFLARE_ACCOUNT_ID="__YOUR_CLOUDFLARE_ACCOUNT_ID__"
# API token with sufficient permissions to manage D1 Databases.
# Create and manage tokens securely in your Cloudflare dashboard.
CLOUDFLARE_D1_TOKEN="__YOUR_CLOUDFLARE_D1_TOKEN__"