{"id":15472495,"url":"https://github.com/miketheman/cookiecutter-fastapi-serverless","last_synced_at":"2025-09-11T18:32:52.590Z","repository":{"id":50153683,"uuid":"332338492","full_name":"miketheman/cookiecutter-fastapi-serverless","owner":"miketheman","description":"DRAFT - A cookiecutter template to generate a FastAPI service, deployable to AWS API Gateway \u0026 Lambda via the serverless framework.","archived":false,"fork":false,"pushed_at":"2024-07-06T02:15:15.000Z","size":169,"stargazers_count":4,"open_issues_count":0,"forks_count":2,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-12-31T18:03:53.842Z","etag":null,"topics":["cookiecutter","cookiecutter-template","fastapi","fastapi-boilerplate","python","python3","serverless","template"],"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/miketheman.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":"2021-01-24T00:43:32.000Z","updated_at":"2024-07-06T02:15:17.000Z","dependencies_parsed_at":"2024-05-06T23:27:13.190Z","dependency_job_id":"f13a0da0-3895-40f5-a1ec-7d541075d027","html_url":"https://github.com/miketheman/cookiecutter-fastapi-serverless","commit_stats":{"total_commits":17,"total_committers":2,"mean_commits":8.5,"dds":0.05882352941176472,"last_synced_commit":"0f2c31b420b3581c79e2e74022c151de350ee2de"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/miketheman%2Fcookiecutter-fastapi-serverless","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/miketheman%2Fcookiecutter-fastapi-serverless/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/miketheman%2Fcookiecutter-fastapi-serverless/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/miketheman%2Fcookiecutter-fastapi-serverless/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/miketheman","download_url":"https://codeload.github.com/miketheman/cookiecutter-fastapi-serverless/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":232659188,"owners_count":18557024,"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","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","cookiecutter-template","fastapi","fastapi-boilerplate","python","python3","serverless","template"],"created_at":"2024-10-02T02:39:12.125Z","updated_at":"2025-01-06T01:07:37.301Z","avatar_url":"https://github.com/miketheman.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# cookiecutter-fastapi-template\n\n[![license: MIT](https://img.shields.io/badge/license-MIT-black.svg)](https://opensource.org/licenses/MIT)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n\nA [cookiecutter] template to generate a [FastAPI] service, deployable to\nAWS API Gateway \u0026 Lambda via the [serverless framework].\n\n## Why?\n\nTODO: Short, but sweet description.\n\n## How?\n\nTODO: User-facing generate new project, and then what to do next.\n\n```console\nbrew install cookiecutter\ncookiecutter gh:miketheman/cookiecutter-fastapi-serverless\n\npipx run cookiecutter gh:miketheman/cookiecutter-fastapi-serverless\n```\n\nYou will be prompted for some inputs which control the generated content, such\nas your full name, email, the project name, and license, amongst others.\nTo view them all, see the `cookiecutter.json` file - you shouldn't have to\nchange the file at all, only answer the prompts. The generate project won't\ncontain this file.\n\nOnce complete, enter the template directory, and get things set up:\n\n```console\n$ cd \u003cproject_slug\u003e\n$ git init\n$ pipenv install --dev\n$ pipenv run pytest\n```\n\nAlso read the `README.md` in the project's directory, it'll have valuable\ninformation on how to continue!\n\nRemember: this is all a starting point - feel free to change whatever you want,\nit's your project!\n\n## What?\n\nWhat's included in this template? We've made some opinionated choices on what to\ninclude, so that you getting up and running faster\n\nIncluded pieces, with links to their respecitve projects:\n\n- [.editorconfig]\n- [.gitignore]\n- `LICENSE` file, based on your input\n- [Pipenv] and `Pipfile`, set to [Python 3.8]\n- [pytest] with plugins like [black], [flake8], [isort]\n- [uvicorn] for running the service in local development\n\n## Who?\n\nThis project was originally authored by [Mike Fiedler].\n\n[Mike Fiedler]: https://github.com/miketheman\n\n### Contributing\n\nTODO: Add contributing details.\n\n## License\n\nDistributed under the terms of the MIT license, \"cookiecutter-fastapi-template\"\nis free and open source software.\nSee [LICENSE] for details.\n\n\u003c!-- Links other than Authors here --\u003e\n\n[.editorconfig]: https://editorconfig.org/\n[.gitignore]: https://git-scm.com/docs/gitignore\n[black]: https://black.readthedocs.io/\n[cookiecutter]: https://github.com/cookiecutter/cookiecutter\n[FastAPI]: https://fastapi.tiangolo.com/\n[flake8]: https://flake8.pycqa.org/\n[isort]: https://pycqa.github.io/isort/\n[LICENSE]: LICENSE\n[Pipfile]: https://pipenv.pypa.io/\n[pytest]: https://pytest.org/\n[Python 3.8]: https://docs.python.org/3.8/\n[serverless framework]: https://www.serverless.com/open-source/\n[uvicorn]: https://www.uvicorn.org/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmiketheman%2Fcookiecutter-fastapi-serverless","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmiketheman%2Fcookiecutter-fastapi-serverless","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmiketheman%2Fcookiecutter-fastapi-serverless/lists"}