[PR #2604] [MERGED] feat: integrate postgres storage #5324

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

📋 Pull Request Information

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

Base: developHead: feat/integrate_postgres_storage


📝 Commits (10+)

📊 Changes

87 files changed (+1401 additions, -1111 deletions)

View changed files

📝 frontend/appflowy_flutter/lib/core/config/config.dart (+19 -0)
📝 frontend/appflowy_flutter/lib/env/env.dart (+7 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/application/doc_bloc.dart (+1 -2)
📝 frontend/appflowy_flutter/lib/startup/startup.dart (+1 -0)
📝 frontend/appflowy_flutter/lib/startup/tasks/rust_sdk.dart (+27 -0)
📝 frontend/appflowy_flutter/lib/startup/tasks/supabase_task.dart (+3 -0)
📝 frontend/appflowy_flutter/linux/flutter/dart_ffi/binding.h (+2 -0)
📝 frontend/appflowy_flutter/packages/appflowy_backend/lib/appflowy_backend.dart (+7 -0)
frontend/appflowy_flutter/packages/appflowy_backend/lib/env_serde.dart (+64 -0)
frontend/appflowy_flutter/packages/appflowy_backend/lib/env_serde.l.dart (+65 -0)
📝 frontend/appflowy_flutter/packages/appflowy_backend/lib/ffi.dart (+16 -0)
📝 frontend/appflowy_flutter/packages/appflowy_backend/linux/Classes/binding.h (+2 -0)
📝 frontend/appflowy_flutter/packages/appflowy_backend/macos/Classes/binding.h (+2 -0)
📝 frontend/appflowy_flutter/packages/appflowy_backend/pubspec.yaml (+2 -0)
📝 frontend/appflowy_tauri/src-tauri/Cargo.lock (+21 -11)
📝 frontend/appflowy_tauri/src-tauri/Cargo.toml (+6 -6)
📝 frontend/rust-lib/Cargo.lock (+36 -54)
📝 frontend/rust-lib/Cargo.toml (+5 -5)
📝 frontend/rust-lib/dart-ffi/Cargo.toml (+1 -1)
📝 frontend/rust-lib/dart-ffi/binding.h (+2 -0)

...and 67 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/2604 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 5/23/2023 **Status:** ✅ Merged **Merged:** 5/23/2023 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `develop` ← **Head:** `feat/integrate_postgres_storage` --- ### 📝 Commits (10+) - [`9698709`](https://github.com/AppFlowy-IO/AppFlowy/commit/9698709d6713b554f2010512e67c53caf66a94e5) chore: env config - [`dd06602`](https://github.com/AppFlowy-IO/AppFlowy/commit/dd06602ef41d255db81d0253012c192bf3878441) chore: get user workspace - [`a04b256`](https://github.com/AppFlowy-IO/AppFlowy/commit/a04b25660eebc2e42972c85fc5ec95d385d2af89) feat: enable postgres storage - [`daeffdc`](https://github.com/AppFlowy-IO/AppFlowy/commit/daeffdcfe0536adba9ad016a093c7073130c7154) chore: add new env - [`385461d`](https://github.com/AppFlowy-IO/AppFlowy/commit/385461d2fbff0d08b182ebf21a50aa54ef61b764) chore: add set env ffi - [`f6e83e3`](https://github.com/AppFlowy-IO/AppFlowy/commit/f6e83e344d1d809bdc124d6b14f12bfe841ca5ca) chore: pass env before backend init - [`0ac3712`](https://github.com/AppFlowy-IO/AppFlowy/commit/0ac37123713885f109b0679a4f6a59025b36367b) chore: update - [`52f8eae`](https://github.com/AppFlowy-IO/AppFlowy/commit/52f8eae6af36ff812b3f95ba958dbf273215aba4) fix: ci tests - [`659fca1`](https://github.com/AppFlowy-IO/AppFlowy/commit/659fca1948946e77faf2dbc010c4d419cdce4cc8) chore: commit the generate env file - [`c8248f5`](https://github.com/AppFlowy-IO/AppFlowy/commit/c8248f57a102815d0ca824f10490381a8f94e0d6) chore: remove unused import ### 📊 Changes **87 files changed** (+1401 additions, -1111 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/lib/core/config/config.dart` (+19 -0) 📝 `frontend/appflowy_flutter/lib/env/env.dart` (+7 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/application/doc_bloc.dart` (+1 -2) 📝 `frontend/appflowy_flutter/lib/startup/startup.dart` (+1 -0) 📝 `frontend/appflowy_flutter/lib/startup/tasks/rust_sdk.dart` (+27 -0) 📝 `frontend/appflowy_flutter/lib/startup/tasks/supabase_task.dart` (+3 -0) 📝 `frontend/appflowy_flutter/linux/flutter/dart_ffi/binding.h` (+2 -0) 📝 `frontend/appflowy_flutter/packages/appflowy_backend/lib/appflowy_backend.dart` (+7 -0) ➕ `frontend/appflowy_flutter/packages/appflowy_backend/lib/env_serde.dart` (+64 -0) ➕ `frontend/appflowy_flutter/packages/appflowy_backend/lib/env_serde.l.dart` (+65 -0) 📝 `frontend/appflowy_flutter/packages/appflowy_backend/lib/ffi.dart` (+16 -0) 📝 `frontend/appflowy_flutter/packages/appflowy_backend/linux/Classes/binding.h` (+2 -0) 📝 `frontend/appflowy_flutter/packages/appflowy_backend/macos/Classes/binding.h` (+2 -0) 📝 `frontend/appflowy_flutter/packages/appflowy_backend/pubspec.yaml` (+2 -0) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.lock` (+21 -11) 📝 `frontend/appflowy_tauri/src-tauri/Cargo.toml` (+6 -6) 📝 `frontend/rust-lib/Cargo.lock` (+36 -54) 📝 `frontend/rust-lib/Cargo.toml` (+5 -5) 📝 `frontend/rust-lib/dart-ffi/Cargo.toml` (+1 -1) 📝 `frontend/rust-lib/dart-ffi/binding.h` (+2 -0) _...and 67 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:13 +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#5324
No description provided.