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-08 15:28:00 +02:00
infra first commit - CRUD python API for Events 2024-01-04 14:21:37 +02:00
middlewares dding event_user table 2024-01-08 12:19:55 +02:00
migrations adding more complexicity querying 2024-01-08 15:28:00 +02:00
routes adding more complexicity querying 2024-01-08 15:28:00 +02:00
services adding more complexicity querying 2024-01-08 15:28:00 +02:00
.gitignore first commit - CRUD python API for Events 2024-01-04 14:21:37 +02:00
app.py user can be attend and unatted to events 2024-01-08 12:56:45 +02:00
config.py add users table + authentication 2024-01-07 13:28:49 +02:00
models.py adding more complexicity querying 2024-01-08 15:28:00 +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