{"id":16175306,"url":"https://github.com/app-generator/django-flexy-bootstrap","last_synced_at":"2026-04-18T12:01:47.383Z","repository":{"id":100502866,"uuid":"500055546","full_name":"app-generator/django-flexy-bootstrap","owner":"app-generator","description":"Django Flexy Lite - Open-Source Starter | AppSeed","archived":false,"fork":false,"pushed_at":"2022-10-13T14:24:32.000Z","size":4048,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-22T12:49:34.332Z","etag":null,"topics":["appseed","bootstrap","django"],"latest_commit_sha":null,"homepage":"https://appseed.us/generator/flexy-bootstrap/","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":"2022-06-05T09:40:34.000Z","updated_at":"2022-06-06T23:07:58.000Z","dependencies_parsed_at":"2023-06-06T07:00:41.915Z","dependency_job_id":null,"html_url":"https://github.com/app-generator/django-flexy-bootstrap","commit_stats":null,"previous_names":[],"tags_count":1,"template":true,"template_full_name":null,"purl":"pkg:github/app-generator/django-flexy-bootstrap","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/app-generator%2Fdjango-flexy-bootstrap","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/app-generator%2Fdjango-flexy-bootstrap/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/app-generator%2Fdjango-flexy-bootstrap/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/app-generator%2Fdjango-flexy-bootstrap/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/app-generator","download_url":"https://codeload.github.com/app-generator/django-flexy-bootstrap/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/app-generator%2Fdjango-flexy-bootstrap/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31967993,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T00:39:45.007Z","status":"online","status_checked_at":"2026-04-18T02:00:07.018Z","response_time":103,"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","bootstrap","django"],"created_at":"2024-10-10T04:44:35.504Z","updated_at":"2026-04-18T12:01:47.344Z","avatar_url":"https://github.com/app-generator.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Django Flexy Lite\n\nOpen-Source **Django Dashboard** coded with basic modules, database, ORM and deployment scripts on top of Flexy Bootstrap Lite, a modern Bootstrap dashboard design. [WrapPixel](https://appseed.us/agency/wrappixel)'s **Flexy Bootstrap Lite** is one of the best Bootstrap templates for admin dashboards and control admin panels. This powerful and competent Bootstrap 4 admin template is based on HTML and is built with the CSS framework. \n\n- 👉 [Django Flexy Lite](https://django-flexy-bootstrap.appseed-srv1.com) - LIVE deployment\n- 👉 Free [support](https://appseed.us/support/) via `Email` \u0026 `Discord`\n\n\u003cbr /\u003e\n\n\u003e 🚀 Built with [App Generator](https://appseed.us/generator/), Timestamp: `2022-06-08 12:24`\n\n- `Up-to-date dependencies`\n- UI-Ready app, `SQLite Database`, Django Native ORM\n- `Session-Based authentication`, Forms validation\n- `Deployment`: **Docker**, Gunicorn / Nginx, HEROKU\n- Support via **Github** (issues tracker) and [Discord](https://discord.gg/fZC6hup).\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/django-flexy-bootstrap.git\n$ cd django-flexy-bootstrap\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![Flexy Bootstrap Lite - Starter generated by AppSeed.](https://user-images.githubusercontent.com/51070104/172042466-c456fc58-50bd-4262-8654-a3877ed9a8aa.jpg)\n\n\u003cbr /\u003e\n\n## ✨ How to use it\n\n```bash\n$ git clone https://github.com/app-generator/django-flexy-bootstrap.git\n$ cd django-flexy-bootstrap\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 Storage\n$ pip3 install -r requirements.txt\n$\n$ # Create tables\n$ python manage.py makemigrations\n$ python manage.py migrate\n$\n$ # Start the application (development mode)\n$ python manage.py runserver # default port 8000\n$\n$ # Start the app - custom port\n$ # python manage.py runserver 0.0.0.0:\u003cyour_port\u003e\n$\n$ # Access the web app in browser: http://127.0.0.1:8000/\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 a simple and intuitive structure presented bellow:\n\n```bash\n\u003c PROJECT ROOT \u003e\n   |\n   |-- core/                               # Implements app configuration\n   |    |-- settings.py                    # Defines Global Settings\n   |    |-- wsgi.py                        # Start the app in production\n   |    |-- urls.py                        # Define URLs served by all apps/nodes\n   |\n   |-- apps/\n   |    |\n   |    |-- home/                          # A simple app that serve HTML files\n   |    |    |-- views.py                  # Serve HTML pages for authenticated users\n   |    |    |-- urls.py                   # Define some super simple routes  \n   |    |\n   |    |-- authentication/                # Handles auth routes (login and register)\n   |    |    |-- urls.py                   # Define authentication routes  \n   |    |    |-- views.py                  # Handles login and registration  \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   |-- requirements.txt                     # Development modules - SQLite storage\n   |\n   |-- .env                                 # Inject Configuration via Environment\n   |-- manage.py                            # Start the app - Django default start script\n   |\n   |-- ************************************************************************\n```\n\n\u003cbr /\u003e\n\n\u003e The bootstrap flow\n\n- Django bootstrapper `manage.py` uses `core/settings.py` as the main configuration file\n- `core/settings.py` loads the app magic from `.env` file\n- Redirect the guest users to Login page\n- Unlock the pages served by *app* node for authenticated users\n\n\u003cbr /\u003e\n\n---\nDjango Flexy Lite - Provided by **AppSeed** [App Generator](https://appseed.us/app-generator).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapp-generator%2Fdjango-flexy-bootstrap","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapp-generator%2Fdjango-flexy-bootstrap","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapp-generator%2Fdjango-flexy-bootstrap/lists"}