Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/app-generator/jinja-argon-dashboard-old
Jinja Template - Argon Dashboard | AppSeed
https://github.com/app-generator/jinja-argon-dashboard-old
appseed argon-dashboard jinja-template
Last synced: 13 days ago
JSON representation
Jinja Template - Argon Dashboard | AppSeed
- Host: GitHub
- URL: https://github.com/app-generator/jinja-argon-dashboard-old
- Owner: app-generator
- License: other
- Created: 2020-08-03T12:34:58.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-05-01T23:22:03.000Z (over 1 year ago)
- Last Synced: 2024-12-15T21:18:49.032Z (18 days ago)
- Topics: appseed, argon-dashboard, jinja-template
- Language: SCSS
- Homepage: https://appseed.us/generator/argon-dashboard/
- Size: 40.7 MB
- Stars: 16
- Watchers: 4
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# [Argon Dashboard](https://appseed.us/product/argon-dashboard/) Flask/Jinja
Open-source **Flask/Jinja Template** generated by `AppSeed` op top of **[Argon Dashboard](https://appseed.us/product/argon-dashboard/)**, a modern `Bootstrap 5` dashboard design. The project is a super simple Flask project WITHOUT database, ORM, or any other hard dependency. The project can be used as a codebase for future project or to migrate the Jinja files and assets to a legacy Python-based project that uses Jinja as template engine (Flask, Bottle, Django).
- 👉 [Flask Argon Dashboard](https://appseed.us/product/argon-dashboard/flask/) - product page
- 👉 [Flask Argon Dashboard](https://flask-argon-dashboard.appseed-srv1.com/) - LIVE deployment
- 👉 [Complete documentation](https://docs.appseed.us/boilerplate-code/boilerplate-jinja) - `Learn how to use and update the product`
- ✅ [Set up the environment](https://docs.appseed.us/boilerplate-code/boilerplate-jinja#environment)
- ✅ [Start in Docker](https://docs.appseed.us/boilerplate-code/boilerplate-jinja#start-the-app-in-docker)
- ✅ [Codebase structure](https://docs.appseed.us/boilerplate-code/boilerplate-jinja#codebase-structure)
- ✅ [UI Assets and Templates](https://docs.appseed.us/boilerplate-code/boilerplate-jinja#ui-assets-and-templates)
> Features
- `Up-to-date dependencies`
- Render Engine: Flask / [Jinja2](https://jinja.palletsprojects.com/)
![Argon Dashboard - Starter generated by AppSeed.](https://user-images.githubusercontent.com/51070104/172859049-25ef7546-44e5-4234-95cb-5925b7ebd9be.png)
## ✨ Start the app in Docker
> **Step 1** - Download the code from the GH repository (using `GIT`)
```bash
$ # Get the code
$ git clone https://github.com/app-generator/jinja-argon-dashboard.git
$ cd jinja-argon-dashboard
```
> **Step 2** - Edit `.env` and set `DEBUG=True`. This will activate the `SQLite` persistance.
```txt
DEBUG=True
```
> **Step 3** - Start the APP in `Docker`
```bash
$ docker-compose up --build
```Visit `http://localhost:5085` in your browser. The app should be up & running.
## ✨ How to use it
> Download the code
```bash
$ # Get the code
$ git clone https://github.com/app-generator/jinja-argon-dashboard.git
$ cd jinja-argon-dashboard
```
### 👉 Set Up for `Unix`, `MacOS`
> Install modules via `VENV`
```bash
$ virtualenv env
$ source env/bin/activate
$ pip3 install -r requirements.txt
```
> Set Up Flask Environment
```bash
$ export FLASK_APP=run.py
$ export FLASK_ENV=development
```
> Start the app
```bash
$ flask run
```At this point, the app runs at `http://127.0.0.1:5000/`.
### 👉 Set Up for `Windows`
> Install modules via `VENV` (windows)
```
$ virtualenv env
$ .\env\Scripts\activate
$ pip3 install -r requirements.txt
```
> Set Up Flask Environment
```bash
$ # CMD
$ set FLASK_APP=run.py
$ set FLASK_ENV=development
$
$ # Powershell
$ $env:FLASK_APP = ".\run.py"
$ $env:FLASK_ENV = "development"
```
> Start the app
```bash
$ flask run
```At this point, the app runs at `http://127.0.0.1:5000/`.
## ✨ Code-base structure
The project has a simple, intuitive structure presented bellow:
```bash
< PROJECT ROOT >
|
|-- apps/__init__.py
|-- apps/
| |-- static/
| | |-- # CSS files, Javascripts files
| |
| |-- templates/
| |
| |-- includes/ # Page chunks, components
| | |
| | |-- navigation.html # Top bar
| | |-- sidebar.html # Left sidebar
| | |-- scripts.html # JS scripts common to all pages
| | |-- footer.html # The common footer
| |
| |-- layouts/ # App Layouts (the master pages)
| | |
| | |-- base.html # Used by common pages like index, UI
| | |-- base-fullscreen.html # Used by auth pages (login, register)
| |
| index.html # The default page
| page-404.html # Error 404 page (page not found)
| page-500.html # Error 500 page (server error)
| *.html # All other pages provided by the UI Kit
|
|-- requirements.txt
|
|-- run.py
|
|-- ************************************************************************
```
## ✨ PRO Version
> For more components, pages and priority on support, feel free to take a look at this amazing starter:
Argon Dashboard is a premium Bootstrap Design now available for download in Flask. Made of hundred of elements, designed blocks, and fully coded pages, Argon Dashboard PRO is ready to help you create stunning websites and web apps.
- 👉 [Argon Dashboard PRO Flask](https://appseed.us/product/argon-dashboard-pro/flask/) - Product Page
- 👉 [Argon Dashboard PRO Flask](https://flask-argon-dashboard-pro.appseed-srv1.com/) - LIVE Demo
![Argon Dashboard PRO - Starter generated by AppSeed.](https://user-images.githubusercontent.com/51070104/172859139-621325fd-a235-4019-a75d-64a9a978da29.png)
---
[Argon Dashboard](https://appseed.us/product/argon-dashboard/) Flask/Jinja - Open-source starter generated by **[AppSeed Generator](https://appseed.us/generator/)**.