{"id":31832931,"url":"https://github.com/pfischer1687/vite-fastapi-starter","last_synced_at":"2026-04-13T14:31:58.535Z","repository":{"id":315355412,"uuid":"1058474400","full_name":"pfischer1687/vite-fastapi-starter","owner":"pfischer1687","description":"Full-stack web app template using Python, FastAPI, SQLAlchemy, Typescript, React, Vite, Tailwind, and PostgreSQL!","archived":false,"fork":false,"pushed_at":"2025-10-04T19:28:16.000Z","size":304,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-10-19T07:51:13.815Z","etag":null,"topics":["fastapi","full-stack","postgresql","pyright","python","react","ruff","sqlalchemy","starter","tailwindcss","template","typescript","uv","vite"],"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/pfischer1687.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-17T06:23:46.000Z","updated_at":"2025-10-04T19:28:19.000Z","dependencies_parsed_at":"2025-09-18T06:26:53.659Z","dependency_job_id":"abb8f694-f2dc-4eba-9f73-7b1192865323","html_url":"https://github.com/pfischer1687/vite-fastapi-starter","commit_stats":null,"previous_names":["pfischer1687/vite-fastapi-starter"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/pfischer1687/vite-fastapi-starter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pfischer1687%2Fvite-fastapi-starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pfischer1687%2Fvite-fastapi-starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pfischer1687%2Fvite-fastapi-starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pfischer1687%2Fvite-fastapi-starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pfischer1687","download_url":"https://codeload.github.com/pfischer1687/vite-fastapi-starter/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pfischer1687%2Fvite-fastapi-starter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31757477,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-13T13:27:56.013Z","status":"ssl_error","status_checked_at":"2026-04-13T13:21:23.512Z","response_time":93,"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":["fastapi","full-stack","postgresql","pyright","python","react","ruff","sqlalchemy","starter","tailwindcss","template","typescript","uv","vite"],"created_at":"2025-10-11T23:29:04.716Z","updated_at":"2026-04-13T14:31:58.528Z","avatar_url":"https://github.com/pfischer1687.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# vite-fastapi-starter\n\nA full-stack todo app you can use as a template for projects using Python, FastAPI, SQLAlchemy, Typescript, React, Vite,\nTailwind, and PostgreSQL!\n\n---\n\n## Table of Contents\n\n- [Getting Started](#getting-started)\n  - [Prerequisites](#prerequisites)\n  - [Running via Docker](#running-via-docker)\n  - [Running in Development](#running-in-development)\n- [Linting and Testing](#linting-and-testing)\n- [License](#license)\n\n---\n\n## Getting Started\n\n### Prerequisites\n\n- [Docker](https://www.docker.com/) for containerization\n- [PostgreSQL](https://www.postgresql.org/) (running locally or via Docker)\n- [uv](https://docs.astral.sh/uv/) for managing virtual environments, dependencies, and server builds\n- [Python 3.13](https://www.python.org/downloads/) for development\n- [Alembic](https://alembic.sqlalchemy.org/en/latest/index.html) for running database migrations\n\n---\n\n### Running via Docker\n\n1. Clone the repo\n\n```bash\ngit clone git@github.com:pfischer1687/vite-fastapi-starter.git\ncd vite-fastapi-starter\n```\n\n2. Start the Docker containers (DB, server, and client)\n\n```bash\ndocker compose up\n```\n\n3. Enter `localhost:3000` in your browser\n\n---\n\n### Running in Development\n\n1. Compose the Postgres DB\n\n```bash\ndocker compose up db\n```\n\n2. Set up Python virtual environment\n\n```bash\ncd server\nuv venv --python 3.13\nsource .venv/bin/activate\npip install -r pyproject.toml --all-extras\n```\n\n3. Run the database migration via Alembic\n\n```bash\ncd server/src/todo\nuv run alembic upgrade head\n```\n\nIf you want to generate your own migrations after updating the DB models:\n\n```bash\nalembic revision --autogenerate -m \"\u003cCOMMIT_MSG\u003e\"\n```\n\n4. Start the server\n\n```bash\nuv run fastapi dev src/todo/main.py\n```\n\n5. Set up the client\n\n```bash\ncd client\nnpm install\nnpm run dev\n```\n\n6. Open `localhost:3000` in a browser\n\n---\n\n## Linting and Testing\n\nYou can lint the client with:\n\n```bash\nnpx prettier . --write\n```\n\nand you can lint, format, and type check the server with:\n\n```bash\nuv run pre-commit run --all-files\n```\n\nand you can run the server's suite of unit tests with:\n\n```bash\nuv run pytest -s -vvv\n```\n\n---\n\n## License\n\nMIT License\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpfischer1687%2Fvite-fastapi-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpfischer1687%2Fvite-fastapi-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpfischer1687%2Fvite-fastapi-starter/lists"}