AppFlowy-Cloud/admin_frontend
2025-03-16 10:28:32 +08:00
..
assets feat: use improved login page for oauth redirect 2024-12-04 14:15:14 +08:00
src feat: issue#1173 allow admin frontend to be served on a different path 2025-01-24 11:32:43 +08:00
templates feat: issue#1173 allow admin frontend to be served on a different path 2025-01-24 11:32:43 +08:00
tests feat: issue#1173 allow admin frontend to be served on a different path 2025-01-24 11:32:43 +08:00
Cargo.toml chore: version update to resolve sec issue 2024-12-20 09:37:25 +08:00
dev.env docs: Doc improvement (#256) 2024-01-12 16:01:16 +08:00
Dockerfile chore: add syntax parser directive to Dockerfile (#1271) 2025-03-16 10:28:32 +08:00
README.md chore: trigger ci 2024-12-09 20:59:29 +08:00

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