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
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ wheels/
.installed.cfg
*.egg

# The Python `lib/` rule above unintentionally matches the frontend's
# application source directory — keep it tracked.
!frontend/src/lib/

# Virtual Environment
venv/
env/
Expand Down
11 changes: 11 additions & 0 deletions frontend/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,14 @@
# For separate frontend hosting, set the full API origin:
# VITE_API_BASE_URL=https://climatevision.green/api
VITE_API_BASE_URL=

# Firebase web app config — create a project at https://console.firebase.google.com
# Project settings → General → Your apps → Web app → SDK setup and configuration.
# Then enable Authentication → Sign-in method → Email/Password and Google.
# Without these, the site runs in demo mode (auth UI visible, sign-in disabled).
VITE_FIREBASE_API_KEY=
VITE_FIREBASE_AUTH_DOMAIN=your-project.firebaseapp.com
VITE_FIREBASE_PROJECT_ID=your-project
VITE_FIREBASE_STORAGE_BUCKET=your-project.appspot.com
VITE_FIREBASE_MESSAGING_SENDER_ID=
VITE_FIREBASE_APP_ID=
8 changes: 7 additions & 1 deletion frontend/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,13 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>ClimateVision</title>
<title>ClimateVision — See environmental change before it's irreversible</title>
<meta name="description" content="ClimateVision turns Sentinel-2 and Landsat satellite imagery into automated alerts for deforestation, flooding, and ice melt. Deep-learning change detection for conservation teams and researchers." />
<meta property="og:title" content="ClimateVision — Satellite intelligence for a changing planet" />
<meta property="og:description" content="Automated deforestation, flooding, and ice-melt monitoring from satellite imagery. Open source, powered by deep learning." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://climatevision.green/" />
<meta name="twitter:card" content="summary_large_image" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet" />
Expand Down
Loading
Loading