feat: front end for login

This commit was merged in pull request #5.
This commit is contained in:
2025-06-14 10:02:02 -04:00
parent df5b247cdd
commit 8db73f113c
19 changed files with 531 additions and 68 deletions
+25
View File
@@ -0,0 +1,25 @@
# Alembic
Alembic allows for our database migrations to be tracked in a version control system.
To create a new migration run:
```bash
alembic revision --autogenerate -m 'Describe change here'
```
It's best practice to review the script post revision creation: `alembic/versions`
To apply the migration:
```bash
alembic upgrade head
```
Now you can re-check using `alembic check`
If we need to rollback use:
```bash
alembic downgrade -i
```