Search engine.
Just run codespace of devcontainer Note: Python path in dev environment : /usr/local/py-utils/venvs/poetry/bin/python
run redis: docker-compose -f docker/docker-local-redis.yml up -d
vscode pytest should work from the box. You can run pytest
This project has key dependencies:
- FastAPI https://fastapi.tiangolo.com FastAPI framework, high performance, easy to learn, fast to code, ready for production
To run locally in debug mode run (in dev environment):
uvicorn app.main:app --reload
Open your browser to http://localhost:8080 to view the OpenAPI UI.
For an alternate view of the docs navigate to http://localhost:8000/redoc
Use Testing tab to run / debug tests
- set breakpoint
- open main.py in project root
- run debug file
Be sure that first command in your terminal is source /usr/local/py-utils/venvs/poetry/bin/activate
, create new terminal otherwise.