{"id":16175231,"url":"https://github.com/app-generator/flask-corona-dark","last_synced_at":"2025-08-17T21:17:57.585Z","repository":{"id":54596126,"uuid":"266713191","full_name":"app-generator/flask-corona-dark","owner":"app-generator","description":"Flask Dashboard - Corona Dark Design | AppSeed","archived":false,"fork":false,"pushed_at":"2023-10-04T15:02:03.000Z","size":28728,"stargazers_count":49,"open_issues_count":2,"forks_count":19,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-08-12T19:48:52.283Z","etag":null,"topics":["flask-apps","flask-dashboard","flask-template","jinja"],"latest_commit_sha":null,"homepage":"https://appseed.us/product/corona-dark/flask/","language":"CSS","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,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-05-25T07:30:09.000Z","updated_at":"2024-03-10T01:48:18.000Z","dependencies_parsed_at":"2023-10-04T19:44:14.177Z","dependency_job_id":null,"html_url":"https://github.com/app-generator/flask-corona-dark","commit_stats":null,"previous_names":[],"tags_count":6,"template":true,"template_full_name":null,"purl":"pkg:github/app-generator/flask-corona-dark","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/app-generator%2Fflask-corona-dark","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/app-generator%2Fflask-corona-dark/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/app-generator%2Fflask-corona-dark/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/app-generator%2Fflask-corona-dark/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/app-generator","download_url":"https://codeload.github.com/app-generator/flask-corona-dark/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/app-generator%2Fflask-corona-dark/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270907617,"owners_count":24666000,"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","status":"online","status_checked_at":"2025-08-17T02:00:09.016Z","response_time":129,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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-apps","flask-dashboard","flask-template","jinja"],"created_at":"2024-10-10T04:44:24.957Z","updated_at":"2025-08-17T21:17:57.561Z","avatar_url":"https://github.com/app-generator.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# [Flask Corona Dark](https://appseed.us/product/corona-dark/flask/)\n\nOpen-source **[Flask Dashboard](https://appseed.us/admin-dashboards/flask/)** generated by `AppSeed` on top of a modern design. **Corona Dark** (free version) has beautiful typography, crisp design, and neatly designed dashboards. It combines colors that are easy on the eye, spacious cards, beautiful typography, and graphics.\n\n- 👉 [Flask Corona Dark](https://appseed.us/product/corona-dark/flask/) - `product page`\n- 👉 [Flask Corona Dark](https://flask-corona-dark.appseed-srv1.com/) - `LIVE Demo`\n\n\u003cbr /\u003e\n\n\u003e 🚀 Built with [App Generator](https://appseed.us/generator/)\n\n- ✅ `Up-to-date dependencies`\n- ✅ Database: `sqlite`\n- ✅ `DB Tools`: SQLAlchemy ORM, Flask-Migrate (schema migrations)\n- ✅ Session-Based authentication (via **flask_login**), Forms validation\n- ✅ `Docker`\n\n\u003cbr /\u003e\n\n![top](https://user-images.githubusercontent.com/51070104/181686893-b039fcba-b7bf-4ab7-b210-a22224ffd516.png)\n\n\u003cbr /\u003e\n\n## ✨ Quick Start in `Docker`\n\n\u003e 👉 Get the code\n\n```bash\n$ git clone https://github.com/app-generator/flask-corona-dark.git\n$ cd flask-corona-dark\n```\n\n\u003e 👉 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## ✨ How to use it\n\n```bash\n$ # Get the code\n$ git clone https://github.com/app-generator/flask-corona-dark.git\n$ cd flask-corona-dark\n$\n$ # Virtualenv modules installation (Unix based systems)\n$ virtualenv env\n$ source env/bin/activate\n$\n$ # Virtualenv modules installation (Windows based systems)\n$ # virtualenv env\n$ # .\\env\\Scripts\\activate\n$\n$ # Install modules - SQLite Database\n$ pip3 install -r requirements.txt\n$\n$ # OR with PostgreSQL connector\n$ # pip install -r requirements-pgsql.txt\n$\n$ # Set the FLASK_APP environment variable\n$ (Unix/Mac) export FLASK_APP=run.py\n$ (Windows) set FLASK_APP=run.py\n$ (Powershell) $env:FLASK_APP = \".\\run.py\"\n$\n$ # Set up the DEBUG environment\n$ # (Unix/Mac) export FLASK_ENV=development\n$ # (Windows) set FLASK_ENV=development\n$ # (Powershell) $env:FLASK_ENV = \"development\"\n$\n$ # Start the application (development mode)\n$ # --host=0.0.0.0 - expose the app on all network interfaces (default 127.0.0.1)\n$ # --port=5000    - specify the app port (default 5000)  \n$ flask run --host=0.0.0.0 --port=5000\n$\n$ # Access the dashboard in browser: http://127.0.0.1:5000/\n```\n\n\u003e Note: To use the app, please access the registration page and create a new user. After authentication, the app will unlock the private pages.\n\n\u003cbr /\u003e\n\n## ✨ Code-base structure\n\nThe project is coded using blueprints, app factory pattern, dual configuration profile (development and production), and an intuitive structure presented below:\n\n```bash\n\u003c PROJECT ROOT \u003e\n   |\n   |-- apps/\n   |    |\n   |    |-- home/                           # A simple app that serve HTML files\n   |    |    |-- routes.py                  # Define app routes\n   |    |\n   |    |-- authentication/                 # Handles auth routes (login and register)\n   |    |    |-- routes.py                  # Define authentication routes  \n   |    |    |-- models.py                  # Defines models  \n   |    |    |-- forms.py                   # Define auth forms (login and register) \n   |    |\n   |    |-- static/\n   |    |    |-- \u003ccss, JS, images\u003e          # CSS files, Javascripts files\n   |    |\n   |    |-- templates/                      # Templates used to render pages\n   |    |    |-- includes/                  # HTML chunks and components\n   |    |    |    |-- navigation.html       # Top menu component\n   |    |    |    |-- sidebar.html          # Sidebar component\n   |    |    |    |-- footer.html           # App Footer\n   |    |    |    |-- scripts.html          # Scripts common to all pages\n   |    |    |\n   |    |    |-- layouts/                   # Master pages\n   |    |    |    |-- base-fullscreen.html  # Used by Authentication pages\n   |    |    |    |-- base.html             # Used by common pages\n   |    |    |\n   |    |    |-- accounts/                  # Authentication pages\n   |    |    |    |-- login.html            # Login page\n   |    |    |    |-- register.html         # Register page\n   |    |    |\n   |    |    |-- home/                      # UI Kit Pages\n   |    |         |-- index.html            # Index page\n   |    |         |-- 404-page.html         # 404 page\n   |    |         |-- *.html                # All other pages\n   |    |    \n   |  config.py                             # Set up the app\n   |    __init__.py                         # Initialize the app\n   |\n   |-- requirements.txt                     # Development modules - SQLite storage\n   |-- requirements-mysql.txt               # Production modules  - Mysql DMBS\n   |-- requirements-pqsql.txt               # Production modules  - PostgreSql DMBS\n   |\n   |-- Dockerfile                           # Deployment\n   |-- docker-compose.yml                   # Deployment\n   |-- gunicorn-cfg.py                      # Deployment   \n   |-- nginx                                # Deployment\n   |    |-- appseed-app.conf                # Deployment \n   |\n   |-- .env                                 # Inject Configuration via Environment\n   |-- run.py                               # Start the app - WSGI gateway\n   |\n   |-- ************************************************************************\n```\n\n\u003cbr /\u003e\n\n## ✨ Recompile CSS\n\nTo recompile SCSS files, follow this setup:\n\n\u003cbr /\u003e\n\n**Step #1** - Install tools\n\n- [NodeJS](https://nodejs.org/en/) 12.x or higher\n- [Gulp](https://gulpjs.com/) - globally \n    - `npm install -g gulp-cli`\n- [Yarn](https://yarnpkg.com/) (optional) \n\n\u003cbr /\u003e\n\n**Step #2** - Change the working directory to `assets` folder\n\n```bash\n$ cd apps/static/assets\n```\n\n\u003cbr /\u003e\n\n**Step #3** - Install modules (this will create a classic `node_modules` directory)\n\n```bash\n$ npm install\n// OR\n$ yarn\n```\n\n\u003cbr /\u003e\n\n**Step #4** - Edit \u0026 Recompile SCSS files \n\n```bash\n$ gulp scss\n```\n\nThe generated file is saved in `static/assets/css` directory.\n\n\u003cbr /\u003e\n\n\n\u003cbr /\u003e\n\n---\n[Flask Corona Dark](https://appseed.us/product/corona-dark/flask/) - Provided by **[App Generator](https://appseed.us/app-generator)**.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapp-generator%2Fflask-corona-dark","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapp-generator%2Fflask-corona-dark","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapp-generator%2Fflask-corona-dark/lists"}