AppFlowy-Cloud/admin_frontend
Nathan.fooo 9c911a3a94
refactor: Error (#143)
* chore: remove api

* chore: update log

* refactor: error

* chore: fmt

* ci: fix test

* ci: fix

* chore: remove unstable
2023-11-02 17:17:34 +08:00
..
assets feat: user invite (#135) 2023-10-25 18:46:41 +08:00
src refactor: Error (#143) 2023-11-02 17:17:34 +08:00
templates feat: user invite (#135) 2023-10-25 18:46:41 +08:00
Cargo.lock feat: add admin frontend project 2023-10-06 18:11:15 +08:00
Cargo.toml feat: Admin frontend/refactor (#130) 2023-10-22 12:02:16 +08:00
Dockerfile feat: Admin frontend/refactor (#130) 2023-10-22 12:02:16 +08:00
README.md feat: Admin frontend/refactor (#130) 2023-10-22 12:02:16 +08:00
dev.env feat: added add user by email 2023-10-11 17:47:34 +08:00

README.md

Admin Frontend

Partial Local Environment

  • Go to source root folder of AppFlowy-Cloud
  • Start running locally dependency servers: docker compose --file docker-compose-dev.yml up -d
  • Start SQLX migrations cargo sqlx database create && cargo sqlx migrate run && cargo sqlx prepare --workspace
  • Start AppFlowy-Cloud Server cargo run
  • Go back to AppFlowy-Cloud/admin_frontend directory
  • Run cargo watch -x run -w ., this watch for source changes, rebuild and rerun the app.

Full Local Integration Environment

  • Start the whole stack: docker compose up -d
  • Go to web server
  • After editing source files, do docker compose up -d --no-deps --build admin_frontend
  • You might need to add --force-recreate flag for non build changes to take effect