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

https://github.com/exitare/phd-tracker


https://github.com/exitare/phd-tracker

Last synced: 6 months ago
JSON representation

Awesome Lists containing this project

README

          

# PhD Tracker

### QA Deployment Status
[![Deploy PhDTracker App Staging](https://github.com/Exitare/PhD-Tracker/actions/workflows/staging_deploy.yml/badge.svg)](https://github.com/Exitare/PhD-Tracker/actions/workflows/staging_deploy.yml)

### Live Deployment Status
[![Deploy PhDTracker App Production](https://github.com/Exitare/PhD-Tracker/actions/workflows/prod_deploy.yml/badge.svg)](https://github.com/Exitare/PhD-Tracker/actions/workflows/prod_deploy.yml)

## Alembic

Apply Migrations (When Needed)

To apply new changes later:
```alembic upgrade head```

Make Future Schema Changes with Alembic

Whenever you update your models:
```alembic revision --autogenerate -m "Add X table / Modify Y column"```
```alembic upgrade head```

To recreate schema:
```alembic upgrade head```