mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-07-18 22:46:57 +00:00

* refactor: using tokio-postgres * chore: update * chore: update env * chore: update * chore: upgrade supabase and add logout button * refactor: update * chore: update * refactor: using message queue to handle the pg connection * refactor: move test * refactor: update sql * chore: create pg database when user login * chore: update scheme * chore: generic user service * chore: update * chore: create statistics * chore: create snapshot * chore: add test * chore: add database cloud service * chore: add document cloud service * chore: update interface * test: add document test * refactor: document interface * chore: fix test * chore: update * chore: update test * test: add test * test: add test * test: add test * chore: update collab rev * fix: flutter analyzer * chore: update * chore: update * chore: update * fix: tests * chore: update * chore: update collab rev * ci: rust fmt --------- Co-authored-by: Lucas.Xu <lucas.xu@appflowy.io>
59 lines
1.5 KiB
Dart
59 lines
1.5 KiB
Dart
import 'package:json_annotation/json_annotation.dart';
|
|
|
|
// Run `dart run build_runner build` to generate the json serialization
|
|
// the file `env_serde.g.dart` will be generated in the same directory. Rename
|
|
// the file to `env_serde.i.dart` because the file is ignored by default.
|
|
part 'env_serde.i.dart';
|
|
|
|
@JsonSerializable()
|
|
class AppFlowyEnv {
|
|
final SupabaseConfiguration supabase_config;
|
|
|
|
AppFlowyEnv({required this.supabase_config});
|
|
|
|
factory AppFlowyEnv.fromJson(Map<String, dynamic> json) =>
|
|
_$AppFlowyEnvFromJson(json);
|
|
|
|
Map<String, dynamic> toJson() => _$AppFlowyEnvToJson(this);
|
|
}
|
|
|
|
@JsonSerializable()
|
|
class SupabaseConfiguration {
|
|
final String url;
|
|
final String key;
|
|
final String jwt_secret;
|
|
final PostgresConfiguration postgres_config;
|
|
|
|
SupabaseConfiguration({
|
|
required this.url,
|
|
required this.key,
|
|
required this.jwt_secret,
|
|
required this.postgres_config,
|
|
});
|
|
|
|
factory SupabaseConfiguration.fromJson(Map<String, dynamic> json) =>
|
|
_$SupabaseConfigurationFromJson(json);
|
|
|
|
Map<String, dynamic> toJson() => _$SupabaseConfigurationToJson(this);
|
|
}
|
|
|
|
@JsonSerializable()
|
|
class PostgresConfiguration {
|
|
final String url;
|
|
final String user_name;
|
|
final String password;
|
|
final int port;
|
|
|
|
PostgresConfiguration({
|
|
required this.url,
|
|
required this.user_name,
|
|
required this.password,
|
|
required this.port,
|
|
});
|
|
|
|
factory PostgresConfiguration.fromJson(Map<String, dynamic> json) =>
|
|
_$PostgresConfigurationFromJson(json);
|
|
|
|
Map<String, dynamic> toJson() => _$PostgresConfigurationToJson(this);
|
|
}
|