feat: Stream collab objects (#4361)

* feat: stream collab object

* chore: disable snapshot
This commit is contained in:
Nathan.fooo
2024-01-12 06:26:43 +08:00
committed by GitHub
parent 032a648204
commit cd82c13753
18 changed files with 235 additions and 194 deletions

View File

@ -28,15 +28,8 @@ impl AppFlowyDartConfiguration {
pub fn write_env(&self) {
self.authenticator_type.write_env();
match self.authenticator_type {
AuthenticatorType::AppFlowyCloud => {
self.appflowy_cloud_config.write_env();
},
AuthenticatorType::Supabase => {
self.supabase_config.write_env();
},
_ => {},
}
self.appflowy_cloud_config.write_env();
self.supabase_config.write_env();
for (k, v) in self.envs.iter() {
std::env::set_var(k, v);