{"id":14065484,"url":"https://github.com/isakal/create-flask-app","last_synced_at":"2026-04-03T10:01:52.015Z","repository":{"id":49887264,"uuid":"195748665","full_name":"isakal/create-flask-app","owner":"isakal","description":"Package for Initializing a Flask Project Structure","archived":false,"fork":false,"pushed_at":"2024-02-13T22:48:30.000Z","size":64,"stargazers_count":35,"open_issues_count":7,"forks_count":11,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-07-25T12:43:24.236Z","etag":null,"topics":["click","flask","python"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/isakal.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2019-07-08T06:18:01.000Z","updated_at":"2025-01-02T21:46:16.000Z","dependencies_parsed_at":"2024-05-28T01:50:32.651Z","dependency_job_id":null,"html_url":"https://github.com/isakal/create-flask-app","commit_stats":{"total_commits":51,"total_committers":5,"mean_commits":10.2,"dds":"0.23529411764705888","last_synced_commit":"6ff35f6d1d670b20a4fa7d3aa2f441125b7aecde"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/isakal/create-flask-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/isakal%2Fcreate-flask-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/isakal%2Fcreate-flask-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/isakal%2Fcreate-flask-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/isakal%2Fcreate-flask-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/isakal","download_url":"https://codeload.github.com/isakal/create-flask-app/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/isakal%2Fcreate-flask-app/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267754848,"owners_count":24139435,"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-07-29T02:00:12.549Z","response_time":2574,"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":["click","flask","python"],"created_at":"2024-08-13T07:04:30.981Z","updated_at":"2026-04-03T10:01:51.930Z","avatar_url":"https://github.com/isakal.png","language":"Python","funding_links":[],"categories":["Python"],"sub_categories":[],"readme":"# Create-Flask-App [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-green.svg)](https://github.com/isakal/create-flask-app/pull/new/master)\n\nFlask port of [create-react-app](https://facebook.github.io/create-react-app/) that is used for initializing project structure of your next application.\n\n- [Creating an app](#creating-an-app) - How to create a new app.\n\nCreate Flask app works on macOS, Windows and Linux.\nIf something doesn't work, please [file an issue](https://github.com/isakal/create-flask-app/issues/new).\nIf you have questions, suggestions or need help, [feel free to open an issue](https://github.com/isakal/create-flask-app/issues/new).\n\n## Quick overview \n\n```sh\npip install createflaskapp\ncreate-flask-app my-app\ncd my-app\n# activate venv\npython run.py\n```\n*(use correct version of [pip](https://pip.pypa.io/en/stable/) and [python](https://python.org/) according to your OS and python install)*\nThen open [http://localhost:5000](http://localhost:5000) to see your app.\nWhen you are ready to deploy to production, set environment variable `PRODUCTION` to  `True` on your server of choice, clone the project onto your server and spin it up.\n\n\n## Creating an app\n\n**You'll need to have Python 3.6 or higher on your local development machine** (but it's not required on the server).\nTo create a new app, you can run :\n\n### bash\n```sh\ncreate-flask-app my-app \n```\n\n### python\n```sh\npython -m create-flask-app my-app\n```\nIt will create a directory called my-app inside the current folder.\nInside that directory, it will generate the initial project structure :\n```\nmy-app/\n├──venv\n├── app\n│   ├── __init__.py     \n│   ├── config.py       \n│   ├── errors\n│   │   ├── __init__.py \n│   │   └── handlers.py \n│   ├── home\n│   │   ├── __init__.py \n│   │   └── routes.py   \n│   ├── static\n│   │   └── css\n│   │       └── main.css\n│   └── templates     \n│       ├── about.html\n│       ├── base.html \n│       ├── error.html\n│       └── home.html \n├── requirements.txt  \n└── run.py\n```\n\nNo complicated configuration or folder structures, only the files you need to build and deploy your app.\nOnce the installation is done, you can open your project folder:\n```sh\ncd my-app\n```\nInside the newly created project, you can run some commands:\n\n### `source venv/bin/activate` or `.\\venv\\Scripts\\activate`\nActivates the virutal environment required for the project dependency isolation.\n\n[Read more about venv.](https://https://docs.python.org/3/library/venv.html)  \n\n### `pip install -r requirements.txt`\nInstalls libraries and dependencies listed in `requirements.txt` in active environment.\n\n### `python run.py`\nStarts the app in development mode. \nOpen [http://localhost:5000](http://localhost:5000) to view it in browser.\n\nThe page will automatically reload if you make changes to the code. \nYou will see errors in app reload or startup in the console.\n\n\n## How to Update to New Versions?\n\nCreate-Flask-App can be simply upgraded using pip:\n\n```sh\npip install createflaskapp --upgrade\n# or\npip install createflaskapp -U\n```\n\n## What's Included?\n\nYour environment after installing everything from `requirements.txt` will have everything you need to build simple but modern Flask app:\n- Isolated Python environment with fully functional pip.\n- [Flask](https://www.palletsprojects.com/p/flask/), lightweight WSGI web application framework.\n- A live development server that warns about errors and exceptions.\n- [Jinja](https://jinja.palletsprojects.com/en/2.10.x/) template engine that is very fast and has very similar syntax to python.\n- [Click](https://click.palletsprojects.com/en/7.x/), composable command line interface toolkit.\n\nCheck out [this guide](https://blog.miguelgrinberg.com/post/the-flask-mega-tutorial-part-i-hello-world) for an overview of how these tools fit toghether.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fisakal%2Fcreate-flask-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fisakal%2Fcreate-flask-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fisakal%2Fcreate-flask-app/lists"}