-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy path.env.example
More file actions
31 lines (30 loc) · 1.03 KB
/
.env.example
File metadata and controls
31 lines (30 loc) · 1.03 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
# Environment Variables
#
# This application uses file-based data (src/lib/data/cd-practices.json)
# and requires minimal configuration to run.
#
# Just run:
# npm install
# npm run dev
#
# For production deployment (Netlify):
# - Set feature flags as needed
# - No database credentials needed
# - Pure static site generation
#
# See docs/FILE-BASED-DATA.md for more information.
# Feature Flags
# Enable the Practice Adoption tracking feature
# Set to 'true' to enable, 'false' to disable (default)
#
# IMPORTANT CHANGES (Latest):
# - URL parameters (like ?feature=practice-adoption) NO LONGER control this feature
# - Feature is ONLY controlled by this environment variable
# - This ensures consistent feature state for all users
#
# IMPORTANT: After changing this value, you MUST restart the dev server
# for changes to take effect (stop with Ctrl+C and run `npm run dev` again)
#
# Default: false (recommended for production)
# Set to 'true' if you want the feature enabled by default in local development
VITE_ENABLE_PRACTICE_ADOPTION=false