- Install poetry. One of the options is using
pipx:
pipx install poetry- Setup project files:
poetry install- Run webserver:
poetry run python backendAfter that, you can access API at http://127.0.0.1:8000/
Attention: npm has to be installed.
cd frontend
npm install
npm run devAfter that, you can access site at 127.0.0.1:5173
Attention: docker has to be installed.
docker run --rm -p 5000:5000 erev0s/vampi:latest
curl -X 'GET' 'http://127.0.0.1:5000/createdb' -H 'accept: application/json'After that, you can access the API documentation at 127.0.0.1:5000/ui