{"id":17340455,"url":"https://github.com/sepulworld/flask-app-template","last_synced_at":"2026-05-05T23:33:50.282Z","repository":{"id":142783426,"uuid":"498495771","full_name":"sepulworld/flask-app-template","owner":"sepulworld","description":"Flask app template with User auth and local development prepped up","archived":false,"fork":false,"pushed_at":"2022-06-09T01:48:16.000Z","size":95,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-27T08:48:31.778Z","etag":null,"topics":["cookiecutter-template","flask","hacktoberfest","python","user-authentication"],"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/sepulworld.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":"2022-05-31T20:57:51.000Z","updated_at":"2022-11-01T03:11:54.000Z","dependencies_parsed_at":null,"dependency_job_id":"bc45dbd7-68d7-4caa-915d-e07e32925ac1","html_url":"https://github.com/sepulworld/flask-app-template","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/sepulworld/flask-app-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sepulworld%2Fflask-app-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sepulworld%2Fflask-app-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sepulworld%2Fflask-app-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sepulworld%2Fflask-app-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sepulworld","download_url":"https://codeload.github.com/sepulworld/flask-app-template/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sepulworld%2Fflask-app-template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32672675,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-05T11:29:49.557Z","status":"ssl_error","status_checked_at":"2026-05-05T11:29:48.587Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["cookiecutter-template","flask","hacktoberfest","python","user-authentication"],"created_at":"2024-10-15T15:45:09.724Z","updated_at":"2026-05-05T23:33:50.277Z","avatar_url":"https://github.com/sepulworld.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# flask-app-template\n\nFlask app template with User auth and local development prepped up\n\n![flask-app-template](https://user-images.githubusercontent.com/538171/171298456-c4a3d07e-f27e-4655-804d-801780c392a5.gif)\n\n\n## Requirements\n\n* [python3](https://www.python.org/downloads/)\n* [Poetry](https://python-poetry.org)\n* [Tilt](https://tilt.dev)\n* [Docker](https://docker.com)\n* [Kubernetes](https://kubernetes.io) - (Minikube, Docker for Mac K8s enabled, Kind, etc)\n\n## Install Python Poetry and Tilt\n```\ncurl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python -\ncurl -fsSL https://raw.githubusercontent.com/tilt-dev/tilt/master/scripts/install.sh | bash\n```\n\n## Setup new app and start local development (helloworld example app)\n```\ngit clone https://github.com/sepulworld/flask-app-template.git\ncd flask-app-template\npoetry install\npoetry shell\ncd ..\nbattenberg -O helloworld install --initial-branch main git@github.com:sepulworld/flask-app-template.git \ncd helloworld \ntilt up\n```\n\n## Create Python Flask app via Battenberg\n\nWill generate application git repo with initial scaffolding and user signup, login interface points\n\n```\n./helloworld/\n├── CHANGELOG.md\n├── DEVELOPMENT.md\n├── Dockerfile\n├── LICENSE\n├── README.md\n├── Tiltfile\n├── app\n│   ├── __init__.py\n│   ├── api\n│   │   ├── __init__.py\n│   │   ├── auth.py\n│   │   ├── errors.py\n│   │   ├── tokens.py\n│   │   └── users.py\n│   ├── auth\n│   │   ├── __init__.py\n│   │   ├── email.py\n│   │   ├── forms.py\n│   │   └── routes.py\n│   ├── email.py\n│   ├── errors\n│   │   ├── __init__.py\n│   │   └── handlers.py\n│   ├── main\n│   │   ├── __init__.py\n│   │   ├── forms.py\n│   │   └── routes.py\n│   ├── models.py\n│   └── templates\n│       ├── auth\n│       │   ├── login.html\n│       │   ├── register.html\n│       │   ├── reset_password.html\n│       │   └── reset_password_request.html\n│       ├── base.html\n│       ├── errors\n│       │   ├── 404.html\n│       │   └── 500.html\n│       ├── index.html\n│       └── user.html\n├── boot.sh\n├── config.py\n├── local_dev\n│   └── local.yaml\n├── helloworld.py\n└── pyproject.toml\n```\n\n### Tilt Local Development\n\n```\ntilt up\n```\n\n#### Battenbug Upgrades Process \n\nIf you want to sync new changes from flask-app-template to your app\n \n```\ngit branch template main \ngit checkout -b template_sync\nbattenberg upgrade\n```\n\n#### What is Battenberg?\n\nhttps://github.com/zillow/battenberg#battenberg\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsepulworld%2Fflask-app-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsepulworld%2Fflask-app-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsepulworld%2Fflask-app-template/lists"}