16 lines
759 B
Dart
16 lines
759 B
Dart
class Environment {
|
|
static const String appwritePublicEndpoint =
|
|
'https://appwrite.joshihomeserver.ipv64.net/v1';
|
|
static const String appwriteProjectId = '6894f2b0001f127bab72';
|
|
static const String appwriteProjectName = 'Flutter Projects';
|
|
static const String appwriteRealtimeCollectionId = '68a22f520035a95d6666';
|
|
static const String appwriteDatabaseId = '68a22ef90021b90f0f43';
|
|
static const String ptvApiKey =
|
|
'NTYxMDQ3NTY2OWI3NDI5ZGIzZWIxOWNiNTNhMDEwODY6YTQ4MTJhYzYtYmYzOC00ZmE4LTk4YzYtZDBjNzYyZTAyNjBk';
|
|
|
|
// Lokaler Reverse Proxy für Entwicklung (CORS-Workaround)
|
|
static const String localProxyUrl = 'http://localhost:3000';
|
|
static const bool useLocalProxy =
|
|
true; // true = lokaler Proxy, false = Appwrite Function
|
|
}
|