Users will be able to register, login, out, to attend to events, and to unattend to events. Events CRUD API Flask-python3
Find a file
2024-01-07 16:30:55 +02:00
infra first commit - CRUD python API for Events 2024-01-04 14:21:37 +02:00
middlewares naming typo fix 2024-01-07 16:30:55 +02:00
migrations improved structure + error handling 2024-01-07 16:21:35 +02:00
routes naming typo fix 2024-01-07 16:30:55 +02:00
services improved structure + error handling 2024-01-07 16:21:35 +02:00
.gitignore first commit - CRUD python API for Events 2024-01-04 14:21:37 +02:00
app.py improved structure + error handling 2024-01-07 16:21:35 +02:00
config.py add users table + authentication 2024-01-07 13:28:49 +02:00
models.py improved structure + error handling 2024-01-07 16:21:35 +02:00
README.md first commit - CRUD python API for Events 2024-01-04 14:21:37 +02:00

To create the DB in sqlite, make those commends:

flask db init
flask db migrate -m "initial migration"
flask db upgrade

or

python3 -m flask db init
python3 -m flask db migrate -m "initial migration"
python3 -m flask db upgrade