Alembic is a database migration tool for SQLAlchemy.
you can use the following command to create a new migration file.
alembic revision --autogenerate -m "initial project"
this will create a new migration file in the alembic/versions
directory.
you can use the following command to migrate the database.
alembic upgrade head
To start the application:
./run-project.sh
The application will be available at http://127.0.0.1:8000 in your browser.
The graphql playground will be available at http://127.0.0.1:8000/graphql in your browser.