{"id":24296817,"url":"https://github.com/gmihov001/todo-flask-sqlalchemy","last_synced_at":"2026-04-11T13:34:43.363Z","repository":{"id":101969768,"uuid":"289071517","full_name":"gmihov001/ToDo-Flask-SQLAlchemy","owner":"gmihov001","description":"Custom Flask API with SQL Alchemy database, to serve a ToDo list front-end project. ","archived":false,"fork":false,"pushed_at":"2020-11-01T22:36:13.000Z","size":18063,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-04-11T13:34:42.833Z","etag":null,"topics":["database","flask","flask-sqlalchemy","mysql","python","sqlalchemy"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gmihov001.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGE_LOG.md","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-08-20T17:46:11.000Z","updated_at":"2020-11-01T23:39:41.000Z","dependencies_parsed_at":null,"dependency_job_id":"fe46d39d-d5bb-420e-9016-bfde9d9e4a8c","html_url":"https://github.com/gmihov001/ToDo-Flask-SQLAlchemy","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/gmihov001/ToDo-Flask-SQLAlchemy","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gmihov001%2FToDo-Flask-SQLAlchemy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gmihov001%2FToDo-Flask-SQLAlchemy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gmihov001%2FToDo-Flask-SQLAlchemy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gmihov001%2FToDo-Flask-SQLAlchemy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gmihov001","download_url":"https://codeload.github.com/gmihov001/ToDo-Flask-SQLAlchemy/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gmihov001%2FToDo-Flask-SQLAlchemy/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31682953,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-11T13:07:20.380Z","status":"ssl_error","status_checked_at":"2026-04-11T13:06:47.903Z","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":["database","flask","flask-sqlalchemy","mysql","python","sqlalchemy"],"created_at":"2025-01-16T19:42:09.924Z","updated_at":"2026-04-11T13:34:43.342Z","avatar_url":"https://github.com/gmihov001.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Flask Boilerplate for Profesional Development\n\n[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/from-referrer/)\n\u003cp align=\"center\"\u003e\n    \u003ca href=\"https://youtu.be/ORxQ-K3BzQA\"\u003e\u003cimg height=\"200px\" src=\"https://github.com/4GeeksAcademy/flask-rest-hello/blob/master/docs/assets/how-to.png?raw=true\" /\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n## Features\n\n- Extensive documentation [here](https://github.com/4GeeksAcademy/flask-rest-hello/tree/master/docs).\n- Integrated with Pipenv for package managing.\n- Fast deloyment to heroku with `$ pipenv run deploy`.\n- Use of `.env` file.\n- SQLAlchemy integration for database abstraction.\n\n## Installation (automatic if you are using gitpod)\n\n\u003e Important: The boiplerplate is made for python 3.7 but you can easily change the `python_version` on the Pipfile.\n\nThe following steps are automatically runned withing gitpod, if you are doing a local installation you have to do them manually:\n\n```sh\npipenv install;\nmysql -u root -e \"CREATE DATABASE example\";\npipenv run init;\npipenv run migrate;\npipenv run upgrade;\n```\n\n## How to Start coding?\n\nThere is an example API working with an example database. All your application code should be written inside the `./src/` folder.\n\n- src/main.py (it's where your endpoints should be coded)\n- src/models.py (your database tables and serialization logic)\n- src/utils.py (some reusable classes and functions)\n- src/admin.py (add your models to the admin and manage your data easily)\n\nFor a more detailed explanation, look for the tutorial inside the `docs` folder.\n\n## Remember to migrate every time you change your models\n\nYou have to migrate and upgrade the migrations for every update you make to your models:\n```\n$ pipenv run migrate (to make the migrations)\n$ pipenv run upgrade  (to update your databse with the migrations)\n```\n\n\n# Manual Installation for Ubuntu \u0026 Mac\n\n⚠️ Make sure you have `python 3.6+` and `MySQL` installed on your computer and MySQL is running, then run the following commands:\n```sh\n$ pipenv install (to install pip packages)\n$ pipenv run migrate (to create the database)\n$ pipenv run start (to start the flask webserver)\n```\n\n\n## Deploy to Heroku\n\nThis template is 100% compatible with Heroku[https://www.heroku.com/], just make sure to understand and execute the following steps:\n\n```sh\n// Install heroku\n$ npm i heroku -g\n// Login to heroku on the command line\n$ heroku login -i\n// Create an application (if you don't have it already)\n$ heroku create \u003cyour_application_name\u003e\n// Commit and push to heroku (commited your changes)\n$ git push heroku master\n```\n:warning: For a more detailed explanation on working with .env variables or the MySQL database [read the full guide](https://github.com/4GeeksAcademy/flask-rest-hello/blob/master/docs/DEPLOY_YOUR_APP.md).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgmihov001%2Ftodo-flask-sqlalchemy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgmihov001%2Ftodo-flask-sqlalchemy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgmihov001%2Ftodo-flask-sqlalchemy/lists"}