From d97546dd765294a33ded152074b286f870e0b27f Mon Sep 17 00:00:00 2001 From: Jrodenas Date: Tue, 24 Mar 2026 20:14:57 +0100 Subject: [PATCH] chore: Add `.env.development` to gitignore and create `.env.example` template. --- .env.example | 14 ++++++++++++++ .gitignore | 1 + 2 files changed, 15 insertions(+) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..e181fa2 --- /dev/null +++ b/.env.example @@ -0,0 +1,14 @@ +# Environment Variables Template +# Copy this file to .env.development and fill in the values + +# Supabase Configuration +SUPABASE_URL="https://your-project.supabase.co" +SUPABASE_KEY="your-anon-key-here" +DATABASE_URL="postgresql://postgres:your-db-password@your-db-host:6543/postgres" + +# MapLibre API Key +APIKEY_MAPS="your-maps-api-key" + +# Demo Users +VITE_LOGIN_USER="" +VITE_PASSWORD_USER="" diff --git a/.gitignore b/.gitignore index 8b25bb5..1a6df8a 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ dist-ssr .vinxi __unconfig* todos.json +.env.development