{"id":16175170,"url":"https://github.com/app-generator/flask-illustrations-webpixels","last_synced_at":"2026-05-19T14:11:51.873Z","repository":{"id":100502973,"uuid":"275641063","full_name":"app-generator/flask-illustrations-webpixels","owner":"app-generator","description":"Flask App - Illustrations by Webpixels | AppSeed","archived":false,"fork":false,"pushed_at":"2020-09-11T14:27:37.000Z","size":11206,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-07T18:51:54.404Z","etag":null,"topics":["appseed","flask","flask-application","open-source","web-app-generator"],"latest_commit_sha":null,"homepage":"https://flask-illustrations-webpixels.appseed.us/","language":"JavaScript","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-06-28T18:06:13.000Z","updated_at":"2020-09-11T14:27:40.000Z","dependencies_parsed_at":"2023-05-15T11:15:29.342Z","dependency_job_id":null,"html_url":"https://github.com/app-generator/flask-illustrations-webpixels","commit_stats":null,"previous_names":[],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/app-generator/flask-illustrations-webpixels","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/app-generator%2Fflask-illustrations-webpixels","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/app-generator%2Fflask-illustrations-webpixels/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/app-generator%2Fflask-illustrations-webpixels/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/app-generator%2Fflask-illustrations-webpixels/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/app-generator","download_url":"https://codeload.github.com/app-generator/flask-illustrations-webpixels/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/app-generator%2Fflask-illustrations-webpixels/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279011849,"owners_count":26085004,"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-10-12T02:00:06.719Z","response_time":53,"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":["appseed","flask","flask-application","open-source","web-app-generator"],"created_at":"2024-10-10T04:44:16.665Z","updated_at":"2025-10-12T15:15:38.603Z","avatar_url":"https://github.com/app-generator.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# [Flask App - Illustrations by Webpixels](https://appseed.us/apps/flask-apps/flask-illustrations-webpixels)\n\n\u003e Open-Source Web App generated in Flask by AppSeed [Web App Generator](https://appseed.us/app-generator) - Features:\n\n- UI Kit: **Quick** (Free Version) by **Webpixels**\n- Illustrations by Webpixels\n- SQLite database, Flask-SQLAlchemy ORM\n- Session-Based auth flow (login, register)\n- Deployment scripts: Docker, Gunicorn / Nginx, Heroku\n- **[MIT License](https://github.com/app-generator/license-mit)**\n- Free support via **Github** issues tracker\n- Paid 24/7 Live Support via [Discord](https://discord.gg/fZC6hup).\n\n\u003e Links\n\n- [Flask App - Illustrations by Webpixels](https://flask-illustrations-webpixels.appseed.us) - LIVE Demo\n- [Flask App - Illustrations by Webpixels](https://appseed.us/apps/flask-apps/flask-illustrations-webpixels) - Product page\n- [Boierplate Code Flask](https://docs.appseed.us/boilerplate-code/flask/) - Documentation\n- More [Flask Apps](https://appseed.us/apps/flask-apps) - index hosted by **[AppSeed](https://appseed.us)**\n- [Flask Admin Dashboards](https://appseed.us/admin-dashboards/flask) - index hosted by **[AppSeed](https://appseed.us)**\n\n\u003cbr /\u003e\n\n![Flask App Webpixels - Template project provided by AppSeed.](https://raw.githubusercontent.com/app-generator/flask-illustrations-webpixels/master/media/flask-illustrations-webpixels-screen.png)\n\n\u003cbr /\u003e\n\n## Build from sources\n\n```bash\n$ # Clone the sources\n$ git clone https://github.com/app-generator/flask-illustrations-webpixels.git\n$ cd flask-illustrations-webpixels\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 requirements\n$ pip3 install -r requirements.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$ # Run the application\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 app 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 has a super simple structure, represented as bellow:\n\n```bash\n\u003c PROJECT ROOT \u003e\n   |\n   |-- app/__init__.py\n   |-- app/\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   |    |    |-- accounts/                 # Auth Pages (login, register)\n   |    |    |    |\n   |    |    |    |-- login.html           # Use layout `base-fullscreen.html`\n   |    |    |    |-- register.html        # Use layout `base-fullscreen.html`  \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## Deployment\n\nThe app is provided with a basic configuration to be executed in [Docker](https://www.docker.com/), [Heroku](https://www.heroku.com/), [Gunicorn](https://gunicorn.org/), and [Waitress](https://docs.pylonsproject.org/projects/waitress/en/stable/).\n\n\u003cbr /\u003e\n\n### [Docker](https://www.docker.com/) execution\n---\n\nThe application can be easily executed in a docker container. The steps:\n\n\u003e Get the code\n\n```bash\n$ git clone https://github.com/app-generator/flask-illustrations-webpixels.git\n$ cd flask-illustrations-webpixels\n```\n\n\u003e Start the app in Docker\n\n```bash\n$ sudo docker-compose pull \u0026\u0026 sudo docker-compose build \u0026\u0026 sudo docker-compose up -d\n```\n\nVisit `http://localhost:5005` in your browser. The app should be up \u0026 running.\n\n\u003cbr /\u003e\n\n### [Heroku](https://www.heroku.com/)\n---\n\nSteps to deploy on **Heroku**\n\n- [Create a FREE account](https://signup.heroku.com/) on Heroku platform\n- [Install the Heroku CLI](https://devcenter.heroku.com/articles/getting-started-with-python#set-up) that match your OS: Mac, Unix or Windows\n- Open a terminal window and authenticate via `heroku login` command\n- Clone the sources and push the project for LIVE deployment\n\n```bash\n$ # Clone the source code:\n$ git clone https://github.com/app-generator/flask-illustrations-webpixels.git\n$ cd flask-illustrations-webpixels\n$\n$ # Check Heroku CLI is installed\n$ heroku -v\nheroku/7.25.0 win32-x64 node-v12.13.0 # \u003c-- All good\n$\n$ # Check Heroku CLI is installed\n$ heroku login\n$ # this commaond will open a browser window - click the login button (in browser)\n$\n$ # Create the Heroku project\n$ heroku create\n$\n$ # Trigger the LIVE deploy\n$ git push heroku master\n$\n$ # Open the LIVE app in browser\n$ heroku open\n```\n\n\u003cbr /\u003e\n\n### [Gunicorn](https://gunicorn.org/)\n---\n\nGunicorn 'Green Unicorn' is a Python WSGI HTTP Server for UNIX.\n\n\u003e Install using pip\n\n```bash\n$ pip install gunicorn\n```\n\u003e Start the app using gunicorn binary\n\n```bash\n$ gunicorn --bind 0.0.0.0:8001 run:app\nServing on http://localhost:8001\n```\n\nVisit `http://localhost:8001` in your browser. The app should be up \u0026 running.\n\n\u003cbr /\u003e\n\n### [Waitress](https://docs.pylonsproject.org/projects/waitress/en/stable/)\n---\n\nWaitress (Gunicorn equivalent for Windows) is meant to be a production-quality pure-Python WSGI server with very acceptable performance. It has no dependencies except ones that live in the Python standard library.\n\n\u003e Install using pip\n\n```bash\n$ pip install waitress\n```\n\u003e Start the app using [waitress-serve](https://docs.pylonsproject.org/projects/waitress/en/stable/runner.html)\n\n```bash\n$ waitress-serve --port=8001 run:app\nServing on http://localhost:8001\n```\n\nVisit `http://localhost:8001` in your browser. The app should be up \u0026 running.\n\n\u003cbr /\u003e\n\n## Credits \u0026 Links\n\n- [Flask Framework](https://www.palletsprojects.com/p/flask/) - The official website\n- [Boilerplate Code](https://appseed.us/boilerplate-code) - Index provided by **AppSeed**\n- [Boilerplate Code](https://github.com/app-generator/boilerplate-code) - Index published on Github\n\n\u003cbr /\u003e\n\n---\n[Flask App - Illustrations by Webpixels](https://appseed.us/apps/flask-apps/flask-illustrations-webpixels) - Provided by **AppSeed** [Web App Generator](https://appseed.us/app-generator).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapp-generator%2Fflask-illustrations-webpixels","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapp-generator%2Fflask-illustrations-webpixels","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapp-generator%2Fflask-illustrations-webpixels/lists"}