# Activate virtual environment
pipenv shell
# Install dependencies
pipenv install
- add env file in root directory
- copy from
.env.example
.env
run the project
uvicorn app.main:app --reload --port 8000
# or
./run-project.sh
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
├── app/
│ ├── api/
│ │ ├── v1/
│ │ │ └── user.py
│ │ ├── health.py
│ │ └── root_index.py
│ ├── config/
│ │ ├── authorization.py
│ │ └── cors.py
│ ├── database/
│ │ └── database.py
│ ├── middleware/
│ │ └── authorization_middleware.py
│ ├── models/
│ │ └── users.py
│ ├── schemas/
│ │ └── user_schema.py
│ ├── serializers/
│ │ └── user_serializer.py
│ ├── services/
│ │ └── user_service.py
│ ├── templates/
│ │ ├── mails/
│ │ │ ├── css/
│ │ │ │ └── mail.css
│ │ │ └── welcome_email.html
│ │ └── user.html
│ ├── utils/
│ │ ├── mailer/
│ │ │ ├── inline_css.py
│ │ │ ├── mail.py
│ │ │ └── mail_templating.py
│ │ ├── base.py
│ │ ├── jwt_utils.py
│ │ ├── paginate.py
│ │ ├── password.py
│ │ └── validation.py
│ ├── __init__.py
│ └── main.py
├── alembic/*
├── docker/*
├── alembic.ini
├── .env
├── .env.example
├── .gitignore
├── build.sh
├── Pipfile
├── Pipfile.lock
├── README.md
└── run-project.sh
Note
This project needs python 3.12 or higher