AppFlowy-Cloud/admin_frontend
Kilu.He 1eb29cd614
fix: open and download (#529)
* fix: open and download

* fix: remove listener

* fix: mobile event

* fix: mobile download

* fix: remove

* fix: replace click

* fix: adjust code order

* fix: open type

* fix: open link

* fix: open link

* fix: open link

* fix: open link

* fix: open link

* fix: open link

* fix: open link

* fix: open link

* fix: open link

* fix: open link

* fix: open link
2024-05-08 11:03:23 +08:00
..
assets feat: workspace invitation view shared and accept 2024-03-18 15:59:07 +08:00
src feat: reuse email link 2024-05-06 14:18:36 +08:00
templates fix: open and download (#529) 2024-05-08 11:03:23 +08:00
Cargo.lock feat: add admin frontend project 2023-10-06 18:11:15 +08:00
Cargo.toml feat: remove cors 2024-04-23 01:21:25 +08:00
Dockerfile chore: use rust 1.77 (#493) 2024-04-24 10:47:18 +08:00
README.md feat: dynamic load oauth login options if supported by gotrue 2023-11-22 22:45:15 +08:00
dev.env docs: Doc improvement (#256) 2024-01-12 16:01:16 +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