mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +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>
82 lines
2.2 KiB
Dart
82 lines
2.2 KiB
Dart
// lib/env/env.dart
|
|
import 'package:envied/envied.dart';
|
|
|
|
part 'env.g.dart';
|
|
|
|
/// The environment variables are defined in `.env` file that is located in the
|
|
/// appflowy_flutter.
|
|
/// Run `dart run build_runner build --delete-conflicting-outputs`
|
|
/// to generate the keys from the env file.
|
|
///
|
|
/// If you want to regenerate the keys, you need to run `dart run
|
|
/// build_runner clean` before running `dart run build_runner build
|
|
/// --delete-conflicting-outputs`.
|
|
|
|
/// Follow the guide on https://supabase.com/docs/guides/auth/social-login/auth-google to setup the auth provider.
|
|
///
|
|
@Envied(path: '.env')
|
|
abstract class Env {
|
|
@EnviedField(
|
|
obfuscate: true,
|
|
varName: 'SUPABASE_URL',
|
|
defaultValue: '',
|
|
)
|
|
static final String supabaseUrl = _Env.supabaseUrl;
|
|
@EnviedField(
|
|
obfuscate: true,
|
|
varName: 'SUPABASE_ANON_KEY',
|
|
defaultValue: '',
|
|
)
|
|
static final String supabaseAnonKey = _Env.supabaseAnonKey;
|
|
@EnviedField(
|
|
obfuscate: true,
|
|
varName: 'SUPABASE_KEY',
|
|
defaultValue: '',
|
|
)
|
|
static final String supabaseKey = _Env.supabaseKey;
|
|
@EnviedField(
|
|
obfuscate: true,
|
|
varName: 'SUPABASE_JWT_SECRET',
|
|
defaultValue: '',
|
|
)
|
|
static final String supabaseJwtSecret = _Env.supabaseJwtSecret;
|
|
|
|
@EnviedField(
|
|
obfuscate: true,
|
|
varName: 'SUPABASE_DB',
|
|
defaultValue: '',
|
|
)
|
|
static final String supabaseDb = _Env.supabaseDb;
|
|
|
|
@EnviedField(
|
|
obfuscate: true,
|
|
varName: 'SUPABASE_DB_USER',
|
|
defaultValue: '',
|
|
)
|
|
static final String supabaseDbUser = _Env.supabaseDbUser;
|
|
|
|
@EnviedField(
|
|
obfuscate: true,
|
|
varName: 'SUPABASE_DB_PASSWORD',
|
|
defaultValue: '',
|
|
)
|
|
static final String supabaseDbPassword = _Env.supabaseDbPassword;
|
|
|
|
@EnviedField(
|
|
obfuscate: true,
|
|
varName: 'SUPABASE_DB_PORT',
|
|
defaultValue: '5432',
|
|
)
|
|
static final String supabaseDbPort = _Env.supabaseDbPort;
|
|
}
|
|
|
|
bool get isSupabaseEnable =>
|
|
Env.supabaseUrl.isNotEmpty &&
|
|
Env.supabaseAnonKey.isNotEmpty &&
|
|
Env.supabaseKey.isNotEmpty &&
|
|
Env.supabaseJwtSecret.isNotEmpty &&
|
|
Env.supabaseDb.isNotEmpty &&
|
|
Env.supabaseDbUser.isNotEmpty &&
|
|
Env.supabaseDbPassword.isNotEmpty &&
|
|
Env.supabaseDbPort.isNotEmpty;
|