pip install -r requirements.txt
create you .env file as .env.example
create your database on postgresql , the same database name in .env file
Run the command: alembic init alembic
Run the command: alembic revision --autogenerate -m "creat users table"
Run the command: alembic upgrade head
Run server: uvicorn app.main:app --host localhost --port 8000 --reload
The Api documentation is on this url:
http://localhost:8000/docs
npm install
npm start
Finish the dashboard frontend