Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Mistral AI API
MISTRAL_API_KEY=your_mistral_api_key_here

# OpenWeatherMap API Keys
OPENWEATHER_API_KEY=your_openweather_api_key_here
OPENWEATHER_FLOOD_API_KEY=your_openweather_flood_api_key_here

# Firebase Real-time Database
FIREBASE_DATABASE_URL=https://your-firebase-project.firebaseio.com

# Overpass API (OpenStreetMap) - No key needed, but URL configurable
OVERPASS_API_URL=http://overpass-api.de/api/interpreter
58 changes: 58 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
# OS files
.DS_Store
Thumbs.db

# Environments
venv/
env/
.env
.env.local
.venv/
ENV/

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg

# Node
node_modules/
.next/
out/
build/
dist/

# Scratch & Logs
dashboard/scratch/
scratch/
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Models (optional, but often large)
# models/*.keras (keeping if user wants them in git)
# models/*.keras.bak
# models/*.pkl
*.bak

# IDEs
.vscode/
.idea/
Loading