{"id":47994731,"url":"https://github.com/remarkablemark/fastapi-template","last_synced_at":"2026-04-04T11:53:11.667Z","repository":{"id":333589445,"uuid":"1137877244","full_name":"remarkablemark/fastapi-template","owner":"remarkablemark","description":"⚡ FastAPI Template","archived":false,"fork":false,"pushed_at":"2026-04-03T04:30:18.000Z","size":1193,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-04-03T12:54:49.942Z","etag":null,"topics":["api","backend","backend-api","fastapi","fastapi-template","python","python3","template"],"latest_commit_sha":null,"homepage":"https://github.com/fastapi/full-stack-fastapi-template/tree/master/backend","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/remarkablemark.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":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null},"funding":{"github":["remarkablemark"],"patreon":"remarkablemark","open_collective":null,"ko_fi":"remarkablemark","tidelift":null,"community_bridge":null,"liberapay":"remarkablemark","issuehunt":null,"otechie":null,"buy_me_a_coffee":"remarkablemark","thanks_dev":"u/gh/remarkablemark","custom":["https://b.remarkabl.org/teespring"]}},"created_at":"2026-01-20T00:43:28.000Z","updated_at":"2026-04-03T04:30:21.000Z","dependencies_parsed_at":null,"dependency_job_id":"93d5a326-c6b9-4f40-9a33-02ce6fd09c1e","html_url":"https://github.com/remarkablemark/fastapi-template","commit_stats":null,"previous_names":["remarkablemark/fastapi-template"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/remarkablemark/fastapi-template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remarkablemark%2Ffastapi-template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remarkablemark%2Ffastapi-template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remarkablemark%2Ffastapi-template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remarkablemark%2Ffastapi-template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/remarkablemark","download_url":"https://codeload.github.com/remarkablemark/fastapi-template/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/remarkablemark%2Ffastapi-template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31398770,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T10:20:44.708Z","status":"ssl_error","status_checked_at":"2026-04-04T10:20:06.846Z","response_time":60,"last_error":"SSL_read: 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":["api","backend","backend-api","fastapi","fastapi-template","python","python3","template"],"created_at":"2026-04-04T11:53:10.885Z","updated_at":"2026-04-04T11:53:11.652Z","avatar_url":"https://github.com/remarkablemark.png","language":"Python","funding_links":["https://github.com/sponsors/remarkablemark","https://patreon.com/remarkablemark","https://ko-fi.com/remarkablemark","https://liberapay.com/remarkablemark","https://buymeacoffee.com/remarkablemark","https://thanks.dev/u/gh/remarkablemark","https://b.remarkabl.org/teespring"],"categories":[],"sub_categories":[],"readme":"# fastapi-template\n\n[![codecov](https://codecov.io/gh/remarkablemark/fastapi-template/graph/badge.svg?token=ldtrSznCY4)](https://codecov.io/gh/remarkablemark/fastapi-template)\n[![test](https://github.com/remarkablemark/fastapi-template/actions/workflows/test.yml/badge.svg)](https://github.com/remarkablemark/fastapi-template/actions/workflows/test.yml)\n[![lint](https://github.com/remarkablemark/fastapi-template/actions/workflows/lint.yml/badge.svg)](https://github.com/remarkablemark/fastapi-template/actions/workflows/lint.yml)\n\n⚡ [FastAPI](https://fastapi.tiangolo.com/) template inspired by [Full Stack FastAPI Template](https://fastapi.tiangolo.com/project-generation/).\n\n## Prerequisites\n\n[uv](https://docs.astral.sh/uv/#installation):\n\n```sh\nbrew install uv\n```\n\n## Install\n\nClone the repository:\n\n```sh\ngit clone https://github.com/remarkablemark/fastapi-template.git\ncd fastapi-template\n```\n\nInstall the dependencies:\n\n```sh\nuv sync\n```\n\n## Available Scripts\n\nIn the project directory, you can run:\n\n### `uv run pre-commit install`\n\nInstalls the pre-commit script.\n\n### `uv run fastapi dev`\n\nRuns the app in development mode:\n\n- Server: http://127.0.0.1:8000\n- Documentation: http://127.0.0.1:8000/docs\n\nThe server will reload if you make edits.\n\n### `uv run fastapi run`\n\nRuns the app in production mode.\n\n### `uv run ruff format`\n\nFormats the code (replaces Black).\n\n### `uv run ruff check`\n\nLints the code and checks import sorting (replaces isort).\n\n### `uv run ruff check --fix`\n\nAuto-fixes linting issues and sorts imports.\n\n### `uv run coverage run -m pytest \u0026\u0026 uv run coverage report`\n\nRuns tests with coverage reporting (fails if coverage is below 100%).\n\n## License\n\n[MIT](https://github.com/remarkablemark/fastapi-template/blob/master/LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fremarkablemark%2Ffastapi-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fremarkablemark%2Ffastapi-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fremarkablemark%2Ffastapi-template/lists"}