File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Uncomment the endpoint that you want to use:
2+ #AI_API_ENDPOINT=https://models.github.ai/inference
3+ #AI_API_ENDPOINT=https://api.githubcopilot.com
4+ #AI_API_ENDPOINT=https://api.openai.com/v1
5+
6+ # Optional data storage directories. By default, ~/.local is used.
7+ #MEMCACHE_STATE_DIR=/app/data
8+ #CODEQL_DBS_BASE_PATH=/app/data
9+ #DATA_DIR=/app/data
10+ #LOG_DIR=/app/logs
Original file line number Diff line number Diff line change @@ -20,9 +20,8 @@ pip install -e .
2020# Create .env file if it doesn't exist
2121if [ ! -f .env ]; then
2222 echo " 📝 Creating .env template..."
23- echo " # Optional: CodeQL database base path" >> .env
24- echo " CODEQL_DBS_BASE_PATH=$( realpath data) " >> .env
25- echo " ⚠️ Please configure the environment or your .env file with required tokens!"
23+ cp .devcontainer/env-default .env
24+ echo " ⚠️ Defaults can be changed by editing the auto-generated .env file."
2625fi
2726
2827echo " ✅ Development environment setup complete!"
You can’t perform that action at this time.
0 commit comments