All Projects → app-generator → jinja-material-kit

app-generator / jinja-material-kit

Licence: other
Jinja Template - Material Kit 2 (Bootstrap 5) | AppSeed

Programming Languages

SCSS
7915 projects
HTML
75241 projects
CSS
56736 projects
javascript
184084 projects - #8 most used programming language
python
139335 projects - #7 most used programming language
Dockerfile
14818 projects

Projects that are alternatives of or similar to jinja-material-kit

django-material-kit
Django Boilerplate - Material Kit Design | AppSeed
Stars: ✭ 36 (+157.14%)
Mutual labels:  appseed, bootstrap5
flask-volt-dashboard
Flask Bootstrap 5 - Volt Dashboard | AppSeed
Stars: ✭ 124 (+785.71%)
Mutual labels:  appseed, bootstrap5
jinja-soft-ui-design
Soft UI Design System - Jinja Template | AppSeed
Stars: ✭ 12 (-14.29%)
Mutual labels:  appseed, jinja-template
Kapella-Free-Bootstrap-Admin-Template
Free Dashboard template with Horizontal menu featuring Bootstrap 4.
Stars: ✭ 126 (+800%)
Mutual labels:  bootstrap5
flask-soft-ui-dashboard
Soft UI Dashboard - Open-source Flask Dashboard | AppSeed
Stars: ✭ 113 (+707.14%)
Mutual labels:  appseed
argon-dashboard-flask
Argon Dashboard - Flask Template | Creative-Tim
Stars: ✭ 52 (+271.43%)
Mutual labels:  appseed
spe
A series of PHP8 examples based around a super simple MVC framework (WIP)
Stars: ✭ 14 (+0%)
Mutual labels:  bootstrap5
flask-illustrations-iradesign
Flask App - Illustrations by IraDesign | AppSeed
Stars: ✭ 23 (+64.29%)
Mutual labels:  appseed
django-neumorphism-uikit
Django Web App - Neumorphism UI Kit | AppSeed
Stars: ✭ 19 (+35.71%)
Mutual labels:  appseed
angular-httpclient
Angular 15 Example HttpClient
Stars: ✭ 21 (+50%)
Mutual labels:  bootstrap5
Adminmart-lite
Free Bootstrap 5 Based Admin Dashboard Template to Build your dashboard in no time.
Stars: ✭ 41 (+192.86%)
Mutual labels:  bootstrap5
loopple
Drag & drop dashboard builder
Stars: ✭ 180 (+1185.71%)
Mutual labels:  bootstrap5
bootstrap-5-autocomplete
autocomplete/typeahead js plugin for bootstrap v5
Stars: ✭ 79 (+464.29%)
Mutual labels:  bootstrap5
anisearch
Anime searching application website build with Vue.JS 3, Typescript and Bootstrap 5
Stars: ✭ 26 (+85.71%)
Mutual labels:  bootstrap5
mean-docker
A Mean stack (Angular 15.0.3, Expressjs 4.17.1, MongoDB) jump start project with support of docker.
Stars: ✭ 73 (+421.43%)
Mutual labels:  bootstrap5
petridish
Jekyll theme for research project websites 🧫
Stars: ✭ 38 (+171.43%)
Mutual labels:  bootstrap5
html5-blank-slate
A blank starter theme that incorporates Bootstrap 5 with WordPress and Vite for frontend tooling.
Stars: ✭ 21 (+50%)
Mutual labels:  bootstrap5
mypy-playground
The mypy playground. Try mypy with your web browser.
Stars: ✭ 58 (+314.29%)
Mutual labels:  bootstrap5
startbootstrap-small-business
A Bootstrap HTML template for creating marketing websites for small businesses - created by Start Bootstrap
Stars: ✭ 186 (+1228.57%)
Mutual labels:  bootstrap5
bootstrap5-boilerplate
This is the ultimate Bootstrap 5 starter for developers. A boilerplate with Gulp4, cross-env, Sass, sourcemaps, concat, CSS & HTML minification, uglify, image optimization, template partials, BrowserSync.
Stars: ✭ 34 (+142.86%)
Mutual labels:  bootstrap5

Material Kit Flask/Jinja

Open-Source seed project generated by AppSeed in Flask Framework on top of Material Kit design. Designed for those who like bold elements and beautiful websites, Material Kit 2 is ready to help you create stunning websites and web apps. Material Kit 2 is built with over 60 frontend individual elements, like buttons, inputs, navbars, nav tabs, cards, or alerts, giving you the freedom of choosing and combining.


Built with Material Kit Generator

  • Timestamp: 2022-05-25 21:08
  • Build ID: d72e01b0-5c68-47bc-a8cf-9e768a731776
  • Free Support (registered users) via Email and Discord

Features

  • Up-to-date dependencies
  • Render Engine: Flask / Jinja2

Material Kit - Starter generated by AppSeed.


Start the app in Docker

Step 1 - Download the code from the GH repository (using GIT)

$ # Get the code
$ git clone https://github.com/app-generator/jinja-material-kit.git
$ cd jinja-material-kit

Step 2 - Edit .env and set DEBUG=True. This will activate the SQLite persistance.

DEBUG=True

Step 3 - Start the APP in Docker

$ docker-compose up --build 

Visit http://localhost:85 in your browser. The app should be up & running.


How to use it

Download the code

$ # Get the code
$ git clone https://github.com/app-generator/jinja-material-kit.git
$ cd jinja-material-kit

👉 Set Up for Unix, MacOS

Install modules via VENV

$ virtualenv env
$ source env/bin/activate
$ pip3 install -r requirements.txt

Set Up Flask Environment

$ export FLASK_APP=run.py
$ export FLASK_ENV=development

Start the app

$ 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

$ # CMD 
$ set FLASK_APP=run.py
$ set FLASK_ENV=development
$
$ # Powershell
$ $env:FLASK_APP = ".\run.py"
$ $env:FLASK_ENV = "development"

Start the app

$ 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:

< PROJECT ROOT >
   |
   |-- apps/__init__.py
   |-- apps/
   |    |-- static/
   |    |    |-- <css, JS, images>         # 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:

Material Kit 2 is a premium design crafted by the Creative-Tim agency on top of Bootstrap 5 Framework. Designed for those who like bold elements and beautiful websites, Material Kit 2 is made of hundreds of elements, designed blocks, and fully coded pages built with an impressive level of quality.


Mk2 PRO - Premium Seed project by AppSeed.



Material Kit Flask/Jinja - Open-source starter generated by AppSeed Generator.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].