This project is the official Starlette-Admin Demo application that showcases the main features of Starlette-Admin
Available online here
To run this project:
- Clone the repository:
git clone https://github.com/jowilf/starlette-admin-demo.git
cd starlette-admin-demo
- Create and activate a virtual environment:
python3 -m venv env
source env/bin/activate
- Install requirements:
pip install -r 'requirements.txt'
- Create and Fill database:
python seed.py
- Run the application:
uvicorn app.main:app
Then access the application in your browser at the given URL (https://localhost:8000 by default).