From 8cc609ff4e0605a41b35f3b5a8dac8eded37ccd1 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Fri, 25 Apr 2025 07:52:19 -0700 Subject: [PATCH] Add a secrets file for storing API keys and such. --- .gitignore | 3 +++ lib/secrets.dart.EXAMPLE | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 lib/secrets.dart.EXAMPLE diff --git a/.gitignore b/.gitignore index 1876468..9eed36f 100644 --- a/.gitignore +++ b/.gitignore @@ -242,3 +242,6 @@ app.*.map.json /android/app/debug /android/app/profile /android/app/release + +# Do not post secrets! +secrets.dart diff --git a/lib/secrets.dart.EXAMPLE b/lib/secrets.dart.EXAMPLE new file mode 100644 index 0000000..d55f238 --- /dev/null +++ b/lib/secrets.dart.EXAMPLE @@ -0,0 +1,3 @@ +// This file needs renamed `secrets.dart` and filled out properly if implemented. + +final openWeatherKey = "abc123";