⭐️ Thanks to everyone who has starred the project — it really means a lot!
Read this in other languages: Русский (README.md)
This is a Flask web application template with Flask-Admin integration and the AdminLTE3 theme.
- Flask 2.x
- SQLAlchemy for SQLite database management
- Flask-Admin for model administration
- AdminLTE3 theme integration for a modern UI
- Example
Usermodel withid,name, andemailfields - Dashboard page with multiple Chart.js visualizations
/project-root
├── app.py # Main application file
├── templates/ # Jinja2 templates
│ ├── admin_layout.html # AdminLTE3 dashboard layout
│ └── ...
├── static/ # Static files (CSS, JS, images)
├── data/ # Data/database directory
│ └── mydatabase.db # SQLite database (created automatically)
├── requirements.txt # Dependency list
└── README.md # Project documentation
- Clone the repository:
git clone <repository_URL>
cd project-root- Create and activate a virtual environment:
python -m venv venv
source venv/bin/activate # Linux/MacOS
venv\Scripts\activate # Windows- Install dependencies:
pip install -r requirements.txtpython app.pyBy default, the server will be available at: http://127.0.0.1:5000
Author: AlgorithmAlchemy

