https://github.com/anonimpython/reflex-simple_dashboard
Just simple dashboard making on Reflex
https://github.com/anonimpython/reflex-simple_dashboard
admin-dashboard dashboard python simple-app simple-project
Last synced: 10 months ago
JSON representation
Just simple dashboard making on Reflex
- Host: GitHub
- URL: https://github.com/anonimpython/reflex-simple_dashboard
- Owner: AnonimPython
- Created: 2025-02-10T20:28:08.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-10T23:05:14.000Z (over 1 year ago)
- Last Synced: 2025-04-05T18:13:28.195Z (about 1 year ago)
- Topics: admin-dashboard, dashboard, python, simple-app, simple-project
- Language: Python
- Homepage:
- Size: 6.75 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README

# VERY Simple Dashboard 🚀
#### A clean and minimal **dashboard** built using **Reflex**, a Python framework for web development. This dashboard features a **sidebar**, a **top bar**, and a **main content area** for displaying key information.
## 🚀 How to Run
`pip install reflex`
`git clone https://github.com/AnonimPython/Reflex-simple_dashboard.git`
`cd simple-dashboard`
`reflex run`
## 🚃 How to implement it into your project
Copy functions `link` and `card_box` into your **UI** folder.
In main file write `from ..ui.link import link` and `from ..ui.card_box import card_box`
main code from `simple-dashboard.py` replace to your **PAGES** folder.
## 📝 Project structure for implementing the project into your code
```
{your_project}/
├── assets/ # Contains images and static files
└── favicon.ico
│ └── {your_images}
├── ui # Folder with your UI components
└── link.py
└── card_box.py
├── pages # Forlder with pages
└── simple_dashboard.py
├── {main_file}.py # Main Reflex application file
├── README.md
└── requirements.txt # List of dependencies
```