{"id":24650809,"url":"https://github.com/tangoman75/flask-boilerplate","last_synced_at":"2026-05-19T06:37:50.827Z","repository":{"id":114061438,"uuid":"246171991","full_name":"TangoMan75/flask-boilerplate","owner":"TangoMan75","description":"Awesome TangoMan Flask Boilerplate is a fast and handy tool to manage your Flask application with virtualenv easily","archived":false,"fork":false,"pushed_at":"2020-03-13T23:47:00.000Z","size":4,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-20T21:07:39.083Z","etag":null,"topics":["flask","make","makefile","python","tangoman"],"latest_commit_sha":null,"homepage":null,"language":"Makefile","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/TangoMan75.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,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-03-10T00:33:10.000Z","updated_at":"2020-03-13T23:47:02.000Z","dependencies_parsed_at":null,"dependency_job_id":"16d1f667-7de0-4d2f-a3ad-82bd979bdcb9","html_url":"https://github.com/TangoMan75/flask-boilerplate","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/TangoMan75/flask-boilerplate","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TangoMan75%2Fflask-boilerplate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TangoMan75%2Fflask-boilerplate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TangoMan75%2Fflask-boilerplate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TangoMan75%2Fflask-boilerplate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TangoMan75","download_url":"https://codeload.github.com/TangoMan75/flask-boilerplate/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TangoMan75%2Fflask-boilerplate/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33204731,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-18T09:27:30.708Z","status":"online","status_checked_at":"2026-05-19T02:00:06.763Z","response_time":58,"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","make","makefile","python","tangoman"],"created_at":"2025-01-25T18:16:43.444Z","updated_at":"2026-05-19T06:37:50.816Z","avatar_url":"https://github.com/TangoMan75.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":"TangoMan Flask Boilerplate\n==========================\n\nAwesome **TangoMan Flask Boilerplate** is a fast and handy tool to manage your Flask application with virtualenv easily\n\nFeatures\n--------\n\n**TangoMan Flask Boilerplate** provides the following features:\n\n- Install Python\n- Deploy Flask app locally\n- Deploy Flask app in Virtualenv\n\nInstallation\n------------\n\n### Just enter following command\n\n```bash\n$ make up\n```\n\nDependencies\n------------\n\n**TangoMan Flask Boilerplate** requires the following dependencies:\n\n- Make\n\n### Make\n\n#### Install Make (Linux)\n\nOn linux machine enter following command\n\n```bash\n$ sudo apt-get install -y make\n```\n\n#### Install Make (Windows)\n\nOn windows machine you will need to install [cygwin](http://www.cygwin.com/) or [GnuWin make](http://gnuwin32.sourceforge.net/packages/make.htm) first to execute make script.\n\nUsage\n-----\n\nRun `make` to print help\n\n```bash\n$ make [command] filename=[filename] port=[port] virtualenv=[virtualenv] \n```\n\nValid commands are: help install run freeze dev-install check-install up serve stop venv-run venv-create venv-start venv-stop venv-install venv-remove venv-up venv-serve venv-kill \n\nCommands\n--------\n\n#### help\n```\n$ make help\n```\nPrint this help\n\n### Python3 CLI\n#### install\n```\n$ make install\n```\nInstall\n\n#### run\n```\n$ make run\n```\nStart app\n\n#### freeze\n```\n$ make freeze\n```\nGenerate requirements.txt\n\n### Python3 Host\n#### dev-install\n```\n$ make dev-install\n```\nInstall development environment (python, pip, virtualenv)\n\n### Check Python install\n#### check-install\n```\n$ make check-install\n```\nCheck correct python environment installation\n\n### Python Flask\n#### up\n```\n$ make up\n```\nDeploy and start Flask app locally with one command\n\n#### serve\n```\n$ make serve\n```\nOpen default browser Serve app with gunicorn at localhost\n\n#### stop\n```\n$ make stop\n```\nKill gunicorn server\n\n### Python Virtualenv\n#### venv-run\n```\n$ make venv-run\n```\nStart\n\n#### venv-create\n```\n$ make venv-create\n```\nCreate virtualenv\n\n#### venv-start\n```\n$ make venv-start\n```\nActivate virtualenv\n\n#### venv-stop\n```\n$ make venv-stop\n```\nDeactivate virtualenv\n\n#### venv-install\n```\n$ make venv-install\n```\nInstall in virtualenv\n\n#### venv-remove\n```\n$ make venv-remove\n```\nRemove virtualenv\n\n### Python Virtualenv Flask\n#### venv-up\n```\n$ make venv-up\n```\nDeploy and start your Flask app in fresh virtualenv with one command\n\n#### venv-serve\n```\n$ make venv-serve\n```\nServe app with gunicorn from virtualenv\n\n#### venv-kill\n```\n$ make venv-kill\n```\nKill gunicorn server and remove virtualenv\n\nLicense\n-------\n\nCopyrights (c) 2020 \u0026quot;Matthias Morin\u0026quot; \u0026lt;mat@tangoman.io\u0026gt;\n\n[![License](https://img.shields.io/badge/Licence-MIT-green.svg)](LICENCE)\nDistributed under the MIT license.\n\nIf you like **TangoMan Flask Boilerplate** please star, follow or tweet:\n\n[![GitHub stars](https://img.shields.io/github/stars/TangoMan75/flask-boilerplate?style=social)](https://github.com/TangoMan75/flask-boilerplate/stargazers)\n[![GitHub followers](https://img.shields.io/github/followers/TangoMan75?style=social)](https://github.com/TangoMan75)\n[![Twitter](https://img.shields.io/twitter/url?style=social\u0026url=https%3A%2F%2Fgithub.com%2FTangoMan75%2Fflask-boilerplate)](https://twitter.com/intent/tweet?text=Wow:\u0026url=https%3A%2F%2Fgithub.com%2FTangoMan75%2Fflask-boilerplate)\n\n... And check my other cool projects.\n\n[![LinkedIn](https://img.shields.io/static/v1?style=social\u0026logo=linkedin\u0026label=LinkedIn\u0026message=morinmatthias)](https://www.linkedin.com/in/morinmatthias)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftangoman75%2Fflask-boilerplate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftangoman75%2Fflask-boilerplate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftangoman75%2Fflask-boilerplate/lists"}