File tree Expand file tree Collapse file tree 3 files changed +28
-1
lines changed
Expand file tree Collapse file tree 3 files changed +28
-1
lines changed Original file line number Diff line number Diff line change 1- # for uploading to portal
1+ # Example environment variables
2+ # These are for reference only - use .env.local for local development
3+
4+ # For uploading to Code PushUp portal
25CP_API_KEY =
6+
7+ # Note: For local development with tsx/TypeScript execution,
8+ # copy .env.local.example to .env.local and configure NODE_OPTIONS there
Original file line number Diff line number Diff line change 1+ # Local development environment variables
2+ # Copy this to .env.local (gitignored) and customize for your setup
3+
4+ # Enable tsx for TypeScript execution in Nx
5+ # This allows running local generator/executor directly as .ts files without pre-compilation
6+ # This allowes the local plugins to import files with .js extensions (same as the packages in the repository)
7+ NODE_OPTIONS = --import tsx
8+ # This is used to resolve the paths in the local generator/executor so local packages can be imported as path aliases
9+ TSX_TSCONFIG_PATH = tsconfig.base.json
Original file line number Diff line number Diff line change 1+ # Local development environment variables
2+ # Copy this to .env.local (gitignored) and customize for your setup
3+
4+ # Enable tsx for TypeScript execution in Nx
5+ # This allows running local generator/executor directly as .ts files without pre-compilation
6+ # This allowes the local plugins to import files with .js extensions (same as the packages in the repository)
7+ NODE_OPTIONS=--import tsx
8+ # This is used to resolve the paths in the local generator/executor so local packages can be imported as path aliases
9+ TSX_TSCONFIG_PATH=tsconfig.base.json
10+
11+ # Local API keys (optional - only if testing upload features)
12+ # CP_API_KEY=your_api_key_here
You can’t perform that action at this time.
0 commit comments