Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bibekaryal86/trackcase-service

provides backend services for track-case app
https://github.com/bibekaryal86/trackcase-service

alembic fastapi postgresql python sqlalchemy

Last synced: 1 day ago
JSON representation

provides backend services for track-case app

Awesome Lists containing this project

README

        

# trackcase-service
Provides backend services for track-case
Create and manage app users
Create and manage clients, cases, maintain calendars, track collections, etc
Uses python, fastapi, sqlalchemy, alembic, postgresql
Frontend app is provided by: https://github.com/bibekaryal86/trackcase-spa

* make changes to models, then run pip install (because it uses python module imports)
* `pip install .`
* create migrations:
* `alembic revision --autogenerate -m COMMIT_MESSAGE`
* run migrations:
* `alembic upgrade head`
* revert one migration:
* `alembic downgrade -1`
* run as module
* python -m src.trackcase_service.main