- frontend/.env.example: Add SEEDER_API_URL - seeder-api/.env.example: Expand with server config and backend URL - job-scraper-multisite/.env.example: New file with scraping config - Update gitignore files to allow .env.example tracking
30 lines
244 B
Text
30 lines
244 B
Text
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
.venv/
|
|
venv/
|
|
ENV/
|
|
|
|
# Output (keep .gitkeep)
|
|
output/*.csv
|
|
|
|
# Environment
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Distribution
|
|
dist/
|
|
build/
|
|
*.egg-info/
|