git clone https://github.com/AppFlowy-IO/appflowy.git
Note:
Install flutter according to https://docs.flutter.dev/get-started/install/windows
flutter channel dev
flutter doctor
Install rust
# Download rustup.exe from https://win.rustup.rs/x86_64
# Call rustup.exe from powershell or cmd
rustup.exe toolchain install nightly
Install cargo make
cd appflowy/frontend
cargo install --force cargo-make
shell
cargo install --force duckscript_cli
Check pre-request
cargo make flowy_dev
shell
cargo make -p development-windows pb
[Optional] Build flowy-sdk (dart-ffi)
# for development
cargo make --profile development-windows-x86 flowy-sdk-dev
# for production
cargo make --profile production-windows-x86 flowy-sdk-release
Build app_flowy
# for development
cargo make -p development-windows-x86 appflowy-windows-dev
# for production
cargo make -p production-windows-x86 appflowy-windows
Note: You can launch postgresql server by using docker container
TBD