Skip to content

Commit

Permalink
fix: adds default api key file
Browse files Browse the repository at this point in the history
  • Loading branch information
O-Hannonen committed Apr 5, 2024
1 parent 94c143e commit f1de554
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions lib/src/api/api_keys.default.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/// To get an API key, sign up here:
/// https://home.openweathermap.org/users/sign_up
///
/// Then paste it in here and rename this file to `api_keys.dart`.
///
/// You can also specify an API Key via --dart-define. Example:
/// "flutter run --dart-define API_KEY=YOUR_API_KEY
class APIKeys {
static const String? openWeatherAPIKey = null;
}

0 comments on commit f1de554

Please sign in to comment.