{"id":16175007,"url":"https://github.com/app-generator/rocket-flask-v3","last_synced_at":"2025-04-07T10:57:05.823Z","repository":{"id":197652447,"uuid":"699046855","full_name":"app-generator/rocket-flask-v3","owner":"app-generator","description":"Flask v3 - Open-Source Sample | AppSeed","archived":false,"fork":false,"pushed_at":"2023-10-01T20:21:24.000Z","size":26167,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-06T18:13:33.176Z","etag":null,"topics":["flask","flask-v3","flask-v3-cicd","flask-v3-sample","flask-v3-template","flask3","flask3-free-sample","flask3-sample"],"latest_commit_sha":null,"homepage":"https://flask-v3-sample.onrender.com","language":"SCSS","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/app-generator.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2023-10-01T18:59:37.000Z","updated_at":"2024-01-05T04:46:53.000Z","dependencies_parsed_at":null,"dependency_job_id":"eb0e4830-ab61-4188-97f7-2f5051ae7255","html_url":"https://github.com/app-generator/rocket-flask-v3","commit_stats":null,"previous_names":["app-generator/rocket-flask-v3"],"tags_count":0,"template":true,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/app-generator%2Frocket-flask-v3","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/app-generator%2Frocket-flask-v3/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/app-generator%2Frocket-flask-v3/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/app-generator%2Frocket-flask-v3/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/app-generator","download_url":"https://codeload.github.com/app-generator/rocket-flask-v3/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247640512,"owners_count":20971555,"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-v3","flask-v3-cicd","flask-v3-sample","flask-v3-template","flask3","flask3-free-sample","flask3-sample"],"created_at":"2024-10-10T04:43:56.934Z","updated_at":"2025-04-07T10:57:05.799Z","avatar_url":"https://github.com/app-generator.png","language":"SCSS","readme":"# [Flask v3 Sample](https://flask-v3-sample.onrender.com/)\n\nOpen-source **Flask/Jinja Template** provided by `AppSeed` on top of **[Soft UI Dashboard](https://appseed.us/product/soft-ui-dashboard/flask/)**, a modern `Bootstrap 5` dashboard design. \n\n\u003e 👉 **[Flask v3 Sample](https://flask-v3-sample.onrender.com/)** - `LIVE Demo`\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## 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**: [Soft Dashboard BS5](https://www.creative-tim.com/product/soft-ui-dashboard?AFFILIATE=128200) by Creative-Tim\n- ✅ `Docker`\n- ✅ `CI/CD` via Render\n\n![Soft UI Dashboard - Full-Stack Starter generated by AppSeed.](https://user-images.githubusercontent.com/51070104/168843143-f2a2ffac-4ab6-44d2-bc1f-a9a8682a749b.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/rocket-flask-v3.git\n$ cd rocket-flask-v3\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/rocket-flask-v3.git\n$ cd rocket-flask-v3\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## **Deploy on Render**\n\n- Create a Blueprint instance\n  - Go to https://dashboard.render.com/blueprints this link.\n- Click `New Blueprint Instance` button.\n- Connect your `repo` which you want to deploy.\n- Fill the `Service Group Name` and click on the `Update Existing Resources` button.\n- Edit the Environment and [specify the PYTHON_VERSION](https://render.com/docs/python-version)\n  - Version `3.11.5` was used for **[this deployment](https://flask-v3-sample.onrender.com/)**\n- After that, your deployment will start automatically.\n\nAt this point, the product should be LIVE.\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 Soft Dashboard](https://appseed.us/product/soft-ui-dashboard-pro/flask/) `PRO`\n\n\u003e For more components, pages and priority on support, feel free to take a look at this starter:\n\nSoft UI Dashboard is a premium [Bootstrap 5](https://www.admin-dashboards.com/bootstrap-5-templates/) Design now available for download in Flask. Made of hundred of elements, designed blocks, and fully coded pages, Soft UI Dashboard PRO is ready to help you create stunning websites and web apps.\n\n- 👉 [Soft UI Dashboard PRO Flask](https://appseed.us/product/soft-ui-dashboard-pro/flask/) - `product page`\n  - ✅ `Enhanced UI` - more pages and components\n  - ✅ `Priority` on support\n\n\u003cbr \u003e\n\n![Soft UI Dashboard PRO - Starter generated by AppSeed.](https://user-images.githubusercontent.com/51070104/170829870-8acde5af-849a-4878-b833-3be7e67cff2d.png)\n\n\u003cbr /\u003e\n\n---\n[Soft Dashboard](https://appseed.us/product/soft-ui-dashboard/flask/) Flask/Jinja - Open-source starter crafted by **[AppSeed](https://appseed.us/)**.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapp-generator%2Frocket-flask-v3","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapp-generator%2Frocket-flask-v3","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapp-generator%2Frocket-flask-v3/lists"}