File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ enum AppEnvironment {
6
6
/// production backend services and configurations.
7
7
production,
8
8
9
+ /// Represents a development environment connecting to a local API.
10
+ ///
11
+ /// This environment is used during local development, typically connecting
12
+ /// to a locally running Dart Frog backend API.
13
+ development,
14
+
9
15
/// Represents a demonstration environment with in-memory data.
10
16
///
11
17
/// This environment is designed for showcasing the application's user
@@ -14,10 +20,5 @@ enum AppEnvironment {
14
20
/// eliminating the need for API access.
15
21
demo,
16
22
17
- /// Represents a development environment connecting to a local API.
18
- ///
19
- /// This environment is used during local development, typically connecting
20
- /// to a locally running Dart Frog backend API.
21
- development,
22
23
// Add other environments like staging, etc. as needed
23
24
}
You can’t perform that action at this time.
0 commit comments