Skip to content

Commit bd1ca2c

Browse files
feat: add environment variables template
1 parent 1e0f780 commit bd1ca2c

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

.env.example

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Node.js Configuration
2+
NODE_VERSION=18.18.0
3+
NODE_OPTIONS=--max-old-space-size=4096
4+
5+
# Package Manager
6+
PNPM_VERSION=8.15.6
7+
ENABLE_EXPERIMENTAL_COREPACK=1
8+
9+
# Astro Configuration
10+
ASTRO_TELEMETRY_DISABLED=1
11+
12+
# Vercel Deployment (Required for CI/CD)
13+
# Get these from: https://vercel.com/account/tokens
14+
VERCEL_TOKEN=your_vercel_token_here
15+
VERCEL_ORG_ID=your_vercel_org_id_here
16+
VERCEL_PROJECT_ID=your_vercel_project_id_here
17+
18+
# WebContainer API Configuration
19+
# Cross-Origin Isolation Headers (automatically configured)
20+
CROSS_ORIGIN_EMBEDDER_POLICY=require-corp
21+
CROSS_ORIGIN_OPENER_POLICY=same-origin
22+
23+
# Development Mode
24+
TUTORIALKIT_DEV=false
25+
26+
# Production Optimizations
27+
NODE_ENV=production

0 commit comments

Comments
 (0)