Pathfinder 2e - Encounter Builder BACKEND
- Install Docker on your local machine
- Download redis on your local machine:
docker pull redis
- Clone the repository or download the ZIP
git clone https://github.com/RakuJa/BYBE
-
Go to the local BYBE project folder
-
Build docker image of bybe using
docker build -t bybe .
- Run the image
docker run -p 25566:25566 --name bybe-container bybe
Instead of creating a bybe docker instance you may want to run it directly.
gunicorn app.controller:app --config app/gunicorn.conf.py
Gunicorn will have first class support, but you may use uvicorn like:
uvicorn app.controller:app --host 127.0.0.1 --port 25566