{"id":14065373,"url":"https://github.com/gofynd/flask-full","last_synced_at":"2026-02-19T05:31:59.001Z","repository":{"id":98524818,"uuid":"128064728","full_name":"gofynd/flask-full","owner":"gofynd","description":"starter/boilerplate flask application with celery, mongoengine, signals, shell commands, swagger api docs and sphinx docs integration","archived":false,"fork":false,"pushed_at":"2018-09-26T13:30:12.000Z","size":45,"stargazers_count":157,"open_issues_count":2,"forks_count":33,"subscribers_count":32,"default_branch":"master","last_synced_at":"2025-05-07T12:44:49.630Z","etag":null,"topics":["boilerplate","celery","celerybeat","eventlet","flask","mongoengine","python-3","socket-io","starter"],"latest_commit_sha":null,"homepage":"https://medium.com/@neerajshukla1911/how-to-build-large-application-using-flask-celery-5cc7d560b73e","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/gofynd.png","metadata":{"files":{"readme":"README.rst","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}},"created_at":"2018-04-04T13:17:50.000Z","updated_at":"2025-01-23T13:22:06.000Z","dependencies_parsed_at":null,"dependency_job_id":"7245112e-2b25-4d16-92bd-e1a25f2545a4","html_url":"https://github.com/gofynd/flask-full","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/gofynd/flask-full","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofynd%2Fflask-full","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofynd%2Fflask-full/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofynd%2Fflask-full/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofynd%2Fflask-full/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gofynd","download_url":"https://codeload.github.com/gofynd/flask-full/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofynd%2Fflask-full/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29604552,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-19T05:11:50.834Z","status":"ssl_error","status_checked_at":"2026-02-19T05:11:38.921Z","response_time":117,"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":["boilerplate","celery","celerybeat","eventlet","flask","mongoengine","python-3","socket-io","starter"],"created_at":"2024-08-13T07:04:27.424Z","updated_at":"2026-02-19T05:31:58.968Z","avatar_url":"https://github.com/gofynd.png","language":"Python","funding_links":[],"categories":["Python"],"sub_categories":[],"readme":"Flask-Full\n**********\n.. image:: https://img.shields.io/circleci/project/github/RedSparr0w/node-csgo-parser/master.svg\n    :alt: Travis\n\nFlask-Full is a boilerplate framework on top of flask for developing large api backend applications using flask. It has in built support for creating shell commands, celery, websocket, eventlet, mongoengine orm, swagger-ui api docs and sphinx docs.\n\nUsage\n-----\nFlask-Full requires  minimum **python 3.5**.\n\nPre-required Setup:\n\n* MacOS/Linux/Windows\n\n* git\n\n* Python3 / pip3 /\n\n* MongoDB\n\n.. code:: shell\n\n    git clone https@github.com:fynd/flask-full.git\n    cd flask-full (rename repository directory to required value)\n    pip3 install -r requirements.txt\n\nTo start server hit\n\n.. code:: shell\n\n    python3 manage.py run -p 8080\n\nServer will start on port 8080. Hitting http://localhost:8080/ping/ on web browser should return {\"message\": \"pong\"}.\n\nAPI Docs are powered by swagger ui and can be viewed by hitting http://localhost:8080/apidocs/ .\n\nTo start celery hit\n\n.. code:: shell\n\n    python3 manage.py celery\n\nTo start beat hit\n\n.. code:: shell\n\n    python3 manage.py beat\n\nFor available commands and options hit\n\n.. code:: shell\n\n    python manage.py\n\n\n\nStructure\n---------\n.. code:: shell\n\n    ├── CHANGES                     Change logs\n    ├── README.rst\n    ├── manage.py                   Management commands file\n    ├── meta.conf                   App meta conf\n    ├── requirements.txt            3rd party libraries libraries\n    ├── requirements_test.txt       Testing 3rd libraries\n    ├── temp                        Temp directory for storing logs\n    ├── app\n       ├── __init__.py              App starting point\n       ├── app.py                   Main blueprint with before and after request handler\n       ├── api_info.py              API level constants\n       ├── choices.py               CHOICES constant dictionary\n       ├── crons.py                 Crons dictionary file\n       ├── exceptions.py            Custom exceptions\n       ├── stats.py                 API stats\n       ├── wsgi.py                  wsgi app\n       ├── wsgi_aux.py              wsgi auxilary app\n       ├── utils                    Utils\n       │   ├── __init__.py\n       │   ├── api_caller.py        Wrapper over requests which handles emits blinker signal over call\n       │   ├── common_util.py       common utils\n       │   ├── json_util.py         contains custom flask encodes\n       │   ├── slack_util.py\n       └── api\n           └── v1\n               └── ├── urls.py url routes\n                   ├──demo_api  container one demo api\n\n\nYou can also use docker-compose. Hit below command to start server on port 8080.\n\n.. code:: shell\n\n    docker-compose build\n    docker-compose up\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgofynd%2Fflask-full","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgofynd%2Fflask-full","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgofynd%2Fflask-full/lists"}