{"id":15442030,"url":"https://github.com/kludex/fastapix-project-simple","last_synced_at":"2025-08-08T01:05:06.804Z","repository":{"id":62032229,"uuid":"557194650","full_name":"Kludex/fastapix-project-simple","owner":"Kludex","description":"Template to start with FastAPI! 😎","archived":false,"fork":false,"pushed_at":"2022-10-25T15:23:31.000Z","size":21,"stargazers_count":11,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-19T20:56:36.198Z","etag":null,"topics":["boilerplate","code-generator","cookiecutter","fastapi","fastapi-expert"],"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/Kludex.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":"Kludex"}},"created_at":"2022-10-25T08:44:15.000Z","updated_at":"2024-10-12T20:58:24.000Z","dependencies_parsed_at":"2023-01-20T19:17:08.898Z","dependency_job_id":null,"html_url":"https://github.com/Kludex/fastapix-project-simple","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Kludex/fastapix-project-simple","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kludex%2Ffastapix-project-simple","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kludex%2Ffastapix-project-simple/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kludex%2Ffastapix-project-simple/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kludex%2Ffastapix-project-simple/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Kludex","download_url":"https://codeload.github.com/Kludex/fastapix-project-simple/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Kludex%2Ffastapix-project-simple/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":269348174,"owners_count":24401902,"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","status":"online","status_checked_at":"2025-08-07T02:00:09.698Z","response_time":73,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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","code-generator","cookiecutter","fastapi","fastapi-expert"],"created_at":"2024-10-01T19:24:48.908Z","updated_at":"2025-08-08T01:05:06.753Z","avatar_url":"https://github.com/Kludex.png","language":"Python","funding_links":["https://github.com/sponsors/Kludex"],"categories":[],"sub_categories":[],"readme":"# FastAPI X Project - Simple!\n\nThis is part of a series of templates I'm working on.\n\nI'm working on a **composable template system** for FastAPI projects.\n\n## Usage\n\nYou'll need to install [`cookiecutter`](https://pypi.org/project/cookiecutter/), and then:\n\n```bash\ncookiecutter https://github.com/fastapi-packages/fastapix-project-simple\n```\n\n## Project Structure\n\n```\nproject/\n├── .github/\n│   └── workflows/\n│       └── main.yml\n├── app/\n│   ├── __init__.py\n|   ├── main.py\n│   ├── api/\n│   │   ├── __init__.py\n│   │   └── v1/\n│   │       ├── __init__.py\n│   │       └── users.py\n│   ├── core/\n│   │   ├── __init__.py\n│   │   ├── config.py\n│   │   ├── database.py\n│   │   └── security.py\n│   ├── models/\n│   │   ├── __init__.py\n│   │   ├── base.py\n│   │   └── users.py\n│   └── schemas/\n│      ├── __init__.py\n│      └── users.py\n├── tests/\n│   ├── __init__.py\n|   ├── conftest.py\n|   ├── test_main.py\n│   └── users/\n│       ├── __init__.py\n|       ├── conftest.py\n│       ├── test_get_users.py\n│       ├── test_get_user.py\n│       ├── test_create_user.py\n│       └── test_update_user.py\n├── .gitignore\n├── .pre-commit-config.yaml\n├── pyproject.toml\n├── README.md\n└── requirements.txt\n```\n\n## Supported Generators\n\nThis is a note for myself.\n\n- [ ] `Docker Generator`: Create Dockerfile and docker-compose.yml.\n- [ ] `Entity Generator`: Create entity e.g. User, Item.\n    - This implies creating a model, schemas, and endpoints.\n- [ ] `AsyncIO Generator`: Use asyncio instead.\n- [ ] `Auth Generator`: Add auth strategies.\n- [ ] `TaskQueue Generator`: Add background worker.\n    - [ ] Celery\n    - [ ] ARQ\n    - [ ] Dramatic\n    - [ ] Airflow\n- [ ] `Database Generator`: Add database.\n    - [ ] PostgreSQL\n    - [ ] MySQL\n    - [ ] SQLite\n    - [ ] MongoDB\n- [ ] `Migration Setup`: Add migrations setup.\n    - [ ] Alembic\n- [ ] `Cache Generator`: Add cache.\n  - [ ] Redis\n  - [ ] Memcached\n- [ ] `Deploy Generator` Add deployable strategies.\n    - [ ] TBD\n- [ ] `Schematesis Generator`: Add schematesis.\n- [ ] `DevSetup Generator`: Add development setup.\n    - [ ] Tilt\n- [ ] `Monorepo Generator`: Add monorepo setup.\n  - [ ] Pantsbuild\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkludex%2Ffastapix-project-simple","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkludex%2Ffastapix-project-simple","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkludex%2Ffastapix-project-simple/lists"}