[PR #2935] [MERGED] feat: support pg storage #5486

Closed
opened 2026-03-23 22:18:57 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/2935
Author: @appflowy
Created: 7/4/2023
Status: Merged
Merged: 7/5/2023
Merged by: @appflowy

Base: mainHead: refactor/postgres_conn


📝 Commits (10+)

📊 Changes

157 files changed (+5376 additions, -1329 deletions)

View changed files

📝 frontend/.vscode/tasks.json (+8 -0)
📝 frontend/appflowy_flutter/.gitignore (+1 -0)
📝 frontend/appflowy_flutter/lib/core/config/config.dart (+12 -20)
📝 frontend/appflowy_flutter/lib/env/env.dart (+39 -3)
📝 frontend/appflowy_flutter/lib/startup/startup.dart (+1 -8)
📝 frontend/appflowy_flutter/lib/startup/tasks/rust_sdk.dart (+9 -11)
📝 frontend/appflowy_flutter/lib/startup/tasks/supabase_task.dart (+14 -26)
📝 frontend/appflowy_flutter/lib/user/application/auth/auth_error.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/user/application/auth/supabase_auth_service.dart (+19 -25)
📝 frontend/appflowy_flutter/lib/user/presentation/splash_screen.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/settings_user_view.dart (+35 -13)
📝 frontend/appflowy_flutter/packages/appflowy_backend/lib/env_serde.dart (+25 -31)
📝 frontend/appflowy_flutter/packages/appflowy_backend/lib/env_serde.i.dart (+14 -25)
📝 frontend/appflowy_flutter/pubspec.lock (+16 -16)
📝 frontend/appflowy_flutter/pubspec.yaml (+1 -1)
📝 frontend/appflowy_tauri/src-tauri/Cargo.toml (+6 -6)
📝 frontend/rust-lib/.gitignore (+2 -1)
📝 frontend/rust-lib/Cargo.lock (+295 -21)
📝 frontend/rust-lib/Cargo.toml (+5 -5)
📝 frontend/rust-lib/dart-ffi/src/env_serde.rs (+2 -4)

...and 80 more files

📄 Description

PR Checklist

  • My code adheres to the AppFlowy Style Guide
  • I've listed at least one issue that this PR fixes in the description above.
  • I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes.
  • All existing tests are passing.

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/AppFlowy-IO/AppFlowy/pull/2935 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 7/4/2023 **Status:** ✅ Merged **Merged:** 7/5/2023 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `refactor/postgres_conn` --- ### 📝 Commits (10+) - [`858b7a6`](https://github.com/AppFlowy-IO/AppFlowy/commit/858b7a66d35a7675b5df8ae4a3349f0da65294ba) refactor: using tokio-postgres - [`a72df7b`](https://github.com/AppFlowy-IO/AppFlowy/commit/a72df7bd56f2ae5181376f070dc58114fa759f72) chore: update - [`96c161f`](https://github.com/AppFlowy-IO/AppFlowy/commit/96c161f62fa2e9b72f9691d79027c88d1c48db9e) chore: update env - [`935117b`](https://github.com/AppFlowy-IO/AppFlowy/commit/935117b144f1234d309bdf7e7e0d904a28fb43f8) chore: update - [`1cf3253`](https://github.com/AppFlowy-IO/AppFlowy/commit/1cf32535e63d87b44448782a489b6f366cbd50e2) chore: upgrade supabase and add logout button - [`ba9edc6`](https://github.com/AppFlowy-IO/AppFlowy/commit/ba9edc696f8b68834e434a31bb3a173f9ab31cdc) refactor: update - [`e35503e`](https://github.com/AppFlowy-IO/AppFlowy/commit/e35503e853e110c3b520b955c5481985a86648c7) chore: update - [`80c6f0d`](https://github.com/AppFlowy-IO/AppFlowy/commit/80c6f0d83360234697f4d8c9b3d3dd77f20e25b2) refactor: using message queue to handle the pg connection - [`63642e0`](https://github.com/AppFlowy-IO/AppFlowy/commit/63642e07827706f3ba704acefcbea3697157c7e8) refactor: move test - [`db70cca`](https://github.com/AppFlowy-IO/AppFlowy/commit/db70ccad5a531d8d9668c9086c12ff9299d56103) refactor: update sql ### 📊 Changes **157 files changed** (+5376 additions, -1329 deletions) <details> <summary>View changed files</summary> 📝 `frontend/.vscode/tasks.json` (+8 -0) 📝 `frontend/appflowy_flutter/.gitignore` (+1 -0) 📝 `frontend/appflowy_flutter/lib/core/config/config.dart` (+12 -20) 📝 `frontend/appflowy_flutter/lib/env/env.dart` (+39 -3) 📝 `frontend/appflowy_flutter/lib/startup/startup.dart` (+1 -8) 📝 `frontend/appflowy_flutter/lib/startup/tasks/rust_sdk.dart` (+9 -11) 📝 `frontend/appflowy_flutter/lib/startup/tasks/supabase_task.dart` (+14 -26) 📝 `frontend/appflowy_flutter/lib/user/application/auth/auth_error.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/user/application/auth/supabase_auth_service.dart` (+19 -25) 📝 `frontend/appflowy_flutter/lib/user/presentation/splash_screen.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/settings_user_view.dart` (+35 -13) 📝 `frontend/appflowy_flutter/packages/appflowy_backend/lib/env_serde.dart` (+25 -31) 📝 `frontend/appflowy_flutter/packages/appflowy_backend/lib/env_serde.i.dart` (+14 -25) 📝 `frontend/appflowy_flutter/pubspec.lock` (+16 -16) 📝 `frontend/appflowy_flutter/pubspec.yaml` (+1 -1) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.toml` (+6 -6) 📝 `frontend/rust-lib/.gitignore` (+2 -1) 📝 `frontend/rust-lib/Cargo.lock` (+295 -21) 📝 `frontend/rust-lib/Cargo.toml` (+5 -5) 📝 `frontend/rust-lib/dart-ffi/src/env_serde.rs` (+2 -4) _...and 80 more files_ </details> ### 📄 Description #### PR Checklist - [ ] My code adheres to the [AppFlowy Style Guide](https://appflowy.gitbook.io/docs/essential-documentation/contribute-to-appflowy/software-contributions/submitting-code/style-guides) - [ ] I've listed at least one issue that this PR fixes in the description above. - [ ] I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes. - [ ] All existing tests are passing. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 22:18:57 +00:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
AppFlowy-IO/AppFlowy#5486
No description provided.