{"id":16175140,"url":"https://github.com/app-generator/flask-v3-material-kit","last_synced_at":"2025-04-07T11:13:32.972Z","repository":{"id":197745432,"uuid":"699245163","full_name":"app-generator/flask-v3-material-kit","owner":"app-generator","description":"Flask v3 - Material Kit Design (Free Sample) | AppSeed","archived":false,"fork":false,"pushed_at":"2023-10-02T08:57:10.000Z","size":6569,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-06T18:13:30.401Z","etag":null,"topics":["flask","flask-bootstrap","flask-bs5","flask-v3","flask-v3-sample","flask-v3-template","flask3-bootstrap","flask3-sample"],"latest_commit_sha":null,"homepage":"https://github.com/app-generator/flask-v3-material-kit","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/app-generator.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2023-10-02T08:38:37.000Z","updated_at":"2023-10-02T08:56:15.000Z","dependencies_parsed_at":null,"dependency_job_id":"423d7403-0763-4860-84fe-3beaaf2b49a5","html_url":"https://github.com/app-generator/flask-v3-material-kit","commit_stats":null,"previous_names":["app-generator/flask-v3-material-kit"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/app-generator%2Fflask-v3-material-kit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/app-generator%2Fflask-v3-material-kit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/app-generator%2Fflask-v3-material-kit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/app-generator%2Fflask-v3-material-kit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/app-generator","download_url":"https://codeload.github.com/app-generator/flask-v3-material-kit/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247640466,"owners_count":20971558,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["flask","flask-bootstrap","flask-bs5","flask-v3","flask-v3-sample","flask-v3-template","flask3-bootstrap","flask3-sample"],"created_at":"2024-10-10T04:44:13.262Z","updated_at":"2025-04-07T11:13:32.950Z","avatar_url":"https://github.com/app-generator.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Flask v3 `Material Kit`\n\nOpen-source **Flask/Jinja Template** provided by `AppSeed` on top of **Material Kit**, a modern `Bootstrap 5` design. \n\nThe project is a super simple Flask project WITHOUT database, ORM, or any other hard dependency - Design from **[Creative-Tim](https://www.creative-tim.com/?AFFILIATE=128200)**.\n\n\u003e Features\n\n- ✅ `Up-to-date dependencies` using a **Flask v3.0.0** compatible stack\n- ✅ Render Engine: Flask / [Jinja2](https://jinja.palletsprojects.com/)\n- ✅ **UI Kit**: Volt Dashboard by Themesberg\n- ✅ `Docker`\n- ✅ `CI/CD` via Render\n\n![Material Kit - Starter generated by AppSeed.](https://user-images.githubusercontent.com/51070104/167396765-c88b7a95-155f-4236-8691-7b80fa2d9cd9.png)\n\n\u003cbr /\u003e\n\n## Start with `Docker`\n\n\u003e 👉 **Step 1** - Download the code from the GH repository (using `GIT`) \n\n```bash\n$ git clone https://github.com/app-generator/flask-v3-material-kit.git\n$ cd flask-v3-material-kit\n```\n\n\u003cbr /\u003e\n\n\u003e 👉 **Step 2** - Start the APP in `Docker`\n\n```bash\n$ docker-compose up --build \n```\n\nVisit `http://localhost:5085` in your browser. The app should be up \u0026 running.\n\n\u003cbr /\u003e \n\n## Manual Build\n\n\u003e Download the code \n\n```bash\n$ git clone https://github.com/app-generator/flask-v3-material-kit.git\n$ cd flask-v3-material-kit\n```\n\n\u003cbr /\u003e\n\n### 👉 Set Up for `Unix`, `MacOS` \n\n\u003e Install modules via `VENV`  \n\n```bash\n$ virtualenv env\n$ source env/bin/activate\n$ pip3 install -r requirements.txt\n```\n\n\u003cbr /\u003e\n\n\u003e Set Up Flask Environment\n\n```bash\n$ export FLASK_APP=run.py\n$ export FLASK_ENV=development\n```\n\n\u003cbr /\u003e\n\n\u003e Start the app\n\n```bash\n$ flask run\n```\n\nAt this point, the app runs at `http://127.0.0.1:5000/`. \n\n\u003cbr /\u003e\n\n### 👉 Set Up for `Windows` \n\n\u003e Install modules via `VENV` (windows) \n\n```\n$ virtualenv env\n$ .\\env\\Scripts\\activate\n$ pip3 install -r requirements.txt\n```\n\n\u003cbr /\u003e\n\n\u003e Set Up Flask Environment\n\n```bash\n$ # CMD \n$ set FLASK_APP=run.py\n$ set FLASK_ENV=development\n$\n$ # Powershell\n$ $env:FLASK_APP = \".\\run.py\"\n$ $env:FLASK_ENV = \"development\"\n```\n\n\u003cbr /\u003e\n\n\u003e Start the app\n\n```bash\n$ flask run\n```\n\nAt this point, the app runs at `http://127.0.0.1:5000/`. \n\n\u003cbr /\u003e\n\n## Codebase Structure\n\nThe project has a simple, intuitive structure presented bellow:\n\n```bash\n\u003c PROJECT ROOT \u003e\n   |\n   |-- apps/__init__.py\n   |-- apps/\n   |    |-- static/\n   |    |    |-- \u003ccss, JS, images\u003e         # CSS files, Javascripts files\n   |    |\n   |    |-- templates/\n   |         |\n   |         |-- includes/                 # Page chunks, components\n   |         |    |\n   |         |    |-- navigation.html      # Top bar\n   |         |    |-- sidebar.html         # Left sidebar\n   |         |    |-- scripts.html         # JS scripts common to all pages\n   |         |    |-- footer.html          # The common footer\n   |         |\n   |         |-- layouts/                  # App Layouts (the master pages)\n   |         |    |\n   |         |    |-- base.html            # Used by common pages like index, UI\n   |         |    |-- base-fullscreen.html # Used by auth pages (login, register)\n   |         |\n   |      index.html                       # The default page\n   |      page-404.html                    # Error 404 page (page not found)\n   |      page-500.html                    # Error 500 page (server error)\n   |         *.html                        # All other pages provided by the UI Kit\n   |\n   |-- requirements.txt\n   |\n   |-- run.py\n   |\n   |-- ************************************************************************\n```\n\n\u003cbr /\u003e\n\n## [Flask Material Kit2](https://appseed.us/product/material-kit2-pro/flask/) `PRO`\n\n\u003e For more components, pages and priority on support, feel free to take a look at this starter:\n\n**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.\n\n- 👉 [Flask Material Kit2 PRO](https://appseed.us/product/material-kit2-pro/flask/) - product page\n- 👉 [Flask Material Kit2 PRO](https://flask-material-kit2-pro.appseed-srv1.com/) - LIVE Demo\n\n![Mk2 PRO - Premium Seed project by AppSeed.](https://user-images.githubusercontent.com/51070104/168224733-b054bb46-d454-4aea-bb94-2d01bf4760d2.png)\n\n\u003cbr /\u003e\n\n---\nMaterial Kit - Open-source Flask v3 starter provided by **[AppSeed](https://appseed.us/)**.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapp-generator%2Fflask-v3-material-kit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapp-generator%2Fflask-v3-material-kit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapp-generator%2Fflask-v3-material-kit/lists"}