Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 963 Bytes

README.md

File metadata and controls

36 lines (24 loc) · 963 Bytes

Traction Services

Traction services are built using FastAPI.

Database migrations are generated using alembic.

To install local dependencies:

pip install -r requirements.txt
gunicorn -k uvicorn.workers.UvicornWorker -b localhost:5000  api.main:app

To run linting and tests locally (these are executed automatically for each PR):

pip install tox
tox -e lint
tox -e test

To generate new alembic revision, first update the model file(s) and then from /scripts folder:

docker-compose exec traction-api alembic revision --autogenerate -m "<MIGRATION COMMENT HERE>"

Or, from the root of the services/traction directory:

alembic revision --autogenerate -m "comment"

Or, start the docker services (docker-compose up) and then "bash" into the "traction-api" service and run the above command.

*these are executed on startup