https://github.com/jowilf/starlette-admin-demo
A demo project to showcase Starlette Admin features
https://github.com/jowilf/starlette-admin-demo
Last synced: 3 months ago
JSON representation
A demo project to showcase Starlette Admin features
- Host: GitHub
- URL: https://github.com/jowilf/starlette-admin-demo
- Owner: jowilf
- License: mit
- Created: 2022-09-05T20:29:20.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-02-24T08:13:14.000Z (3 months ago)
- Last Synced: 2025-03-01T05:12:44.347Z (3 months ago)
- Language: Python
- Homepage: https://starlette-admin-demo.jowilf.com/
- Size: 394 KB
- Stars: 34
- Watchers: 1
- Forks: 3
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Starlette-Admin Demo Application
==========================This project is the official [Starlette-Admin][1] Demo application that showcases the
main features of *Starlette-Admin*Available online [here][2]
Usage
-----To run this project:
1. Clone the repository:
```shell
git clone https://github.com/jowilf/starlette-admin-demo.git
cd starlette-admin-demo
```2. Create and activate a virtual environment:
```shell
python3 -m venv env
source env/bin/activate
```3. Install requirements:
```shell
pip install -r 'requirements.txt'
```4. Create and Fill database:
```shell
python seed.py
```5. Run the application:
```shell
uvicorn app.main:app
```Then access the application in your browser at the given URL ( by default).
[1]: https://github.com/jowilf/starlette-admin/
[2]: https://starlette-admin-demo.jowilf.com/