Welcome to the short documentation of royex project!
poetry run uvicorn apiserver.main:app --reload
npm run dev --prefix web
poetry install --no-root
poetry shell
deactivate
exit
poetry run ...
For example:
poetry run python script.py
poetry run python -m apiserver.indexer
- Install dependencies by running
poetry install --no-root
- Activate environment by running
poetry shell
- Run API by running
poetry run uvicorn apiserver.main:app --reload
- Run client by running
npm run dev --prefix web