From 60319e1d3956abf21be1b435dec8b70e0768abee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20M=C3=BCllner?= Date: Thu, 5 Mar 2026 19:33:25 +0100 Subject: [PATCH] chore(dev): add local-only launch/define workflow and ignore secret define file --- .env/flutter_defines.example.json | 5 +++++ .gitignore | 4 ++++ 2 files changed, 9 insertions(+) create mode 100644 .env/flutter_defines.example.json diff --git a/.env/flutter_defines.example.json b/.env/flutter_defines.example.json new file mode 100644 index 0000000..4250c9f --- /dev/null +++ b/.env/flutter_defines.example.json @@ -0,0 +1,5 @@ +{ + "SUPABASE_URL": "https://your-project.supabase.co", + "SUPABASE_ANON_KEY": "your_anon_key", + "SUPABASE_USE_PKCE": "true" +} diff --git a/.gitignore b/.gitignore index 2375b23..8695b9b 100644 --- a/.gitignore +++ b/.gitignore @@ -48,6 +48,10 @@ app.*.map.json /supabase_migration.sql /TPB_APP_CHECKLIST.md +# Local run configuration with secrets +/.vscode/launch.json +/.env/flutter_defines.json + # Local testing artifacts /flutter_*.png /devtools_options.yaml \ No newline at end of file