{"id":13424935,"url":"https://github.com/br3ndonland/inboard","last_synced_at":"2025-04-08T13:02:27.506Z","repository":{"id":38017614,"uuid":"284327701","full_name":"br3ndonland/inboard","owner":"br3ndonland","description":"🚢 Docker images and utilities to power your Python APIs and help you ship faster. With support for Uvicorn, Gunicorn, Starlette, and FastAPI.","archived":false,"fork":false,"pushed_at":"2025-02-17T17:48:09.000Z","size":1569,"stargazers_count":196,"open_issues_count":1,"forks_count":18,"subscribers_count":4,"default_branch":"develop","last_synced_at":"2025-04-01T12:00:13.416Z","etag":null,"topics":["actions","asgi","docker","fastapi","ghcr","github-container-registry","github-packages","gunicorn","hatch","poetry","python","python-poetry","starlette","uvicorn"],"latest_commit_sha":null,"homepage":"https://inboard.bws.bio","language":"Python","has_issues":false,"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/br3ndonland.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":".github/CODE_OF_CONDUCT.md","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":"2020-08-01T19:42:35.000Z","updated_at":"2025-02-22T16:20:18.000Z","dependencies_parsed_at":"2023-11-11T23:19:13.493Z","dependency_job_id":"23f676b7-99c8-4864-852e-70cf7a4274ee","html_url":"https://github.com/br3ndonland/inboard","commit_stats":null,"previous_names":[],"tags_count":124,"template":false,"template_full_name":"br3ndonland/template-python","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/br3ndonland%2Finboard","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/br3ndonland%2Finboard/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/br3ndonland%2Finboard/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/br3ndonland%2Finboard/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/br3ndonland","download_url":"https://codeload.github.com/br3ndonland/inboard/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247847598,"owners_count":21006098,"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":["actions","asgi","docker","fastapi","ghcr","github-container-registry","github-packages","gunicorn","hatch","poetry","python","python-poetry","starlette","uvicorn"],"created_at":"2024-07-31T00:01:00.981Z","updated_at":"2025-04-08T13:02:27.450Z","avatar_url":"https://github.com/br3ndonland.png","language":"Python","funding_links":[],"categories":["Projects","Python"],"sub_categories":["Docker Images"],"readme":"# 🚢 inboard 🐳\n\n\u003cimg src=\"https://raw.githubusercontent.com/br3ndonland/inboard/develop/docs/assets/images/inboard-logo.svg\" alt=\"inboard logo\" width=\"90%\" /\u003e\n\n_Docker images and utilities to power your Python APIs and help you ship faster._\n\n[![PyPI](https://img.shields.io/pypi/v/inboard?color=success)](https://pypi.org/project/inboard/)\n[![GitHub Container Registry](https://img.shields.io/badge/github%20container%20registry-inboard-success)](https://github.com/br3ndonland/inboard/pkgs/container/inboard)\n[![coverage](https://img.shields.io/badge/coverage-100%25-brightgreen?logo=pytest\u0026logoColor=white)](https://coverage.readthedocs.io/en/latest/)\n[![ci](https://github.com/br3ndonland/inboard/workflows/ci/badge.svg)](https://github.com/br3ndonland/inboard/actions)\n[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/ef2798f758e03fa659d1ba2973ddd59515400978/assets/badge/v2.json)](https://github.com/astral-sh/ruff)\n\n[![Mentioned in Awesome FastAPI](https://awesome.re/mentioned-badge-flat.svg)](https://github.com/mjhea0/awesome-fastapi)\n\n## Description\n\nThis repository provides [Docker images](https://github.com/br3ndonland/inboard/pkgs/container/inboard) and a [PyPI package](https://pypi.org/project/inboard/) with useful utilities for Python web servers. It runs [Uvicorn with Gunicorn](https://www.uvicorn.org/), and can be used to build applications with [Starlette](https://www.starlette.io/) and [FastAPI](https://fastapi.tiangolo.com/).\n\n## Justification\n\n_Why use this project?_ You might want to try out inboard because it:\n\n- **Offers a Python package and Docker images that work together**. Python packages and Docker images don't automatically share the same versioning systems, but inboard can help with this. You might install the Python package with a minor version constraint. You can also pull the corresponding Docker image by specifying the minor version in the Docker tag (`FROM ghcr.io/br3ndonland/inboard:\u003cversion\u003e`).\n- **Tests everything**. inboard performs unit testing of 100% of the Python code, and also runs smoke tests of the Docker images each time they are built.\n- **Sets sane defaults, but allows configuration**. Configure a variety of settings with environment variables. Or run it as-is and it just works.\n- **Configures logging extensibly**. inboard simplifies logging by handling all its Python log streams with a single logging config. It also offers the ability to filter health check endpoints out of the access logs. Don't like it? No problem. You can easily extend or override the logging behavior.\n\n## Quickstart\n\n[Get started with Docker](https://www.docker.com/get-started), pull and run an image, and try an API endpoint.\n\n```sh\ndocker pull ghcr.io/br3ndonland/inboard\ndocker run -d -p 80:80 --platform linux/amd64 ghcr.io/br3ndonland/inboard\nhttp :80  # HTTPie: https://httpie.io/\n```\n\n## Documentation\n\nDocumentation is built with [Material for MkDocs](https://squidfunk.github.io/mkdocs-material/), deployed on [Vercel](https://vercel.com/), and available at [inboard.bws.bio](https://inboard.bws.bio) and [inboard.vercel.app](https://inboard.vercel.app).\n\n[Vercel build configuration](https://vercel.com/docs/build-step):\n\n- Build command: `python3 -m pip install mkdocs-material \u0026\u0026 mkdocs build --site-dir public`\n- Output directory: `public` (default)\n\n[Vercel site configuration](https://vercel.com/docs/configuration) is specified in _vercel.json_.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbr3ndonland%2Finboard","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbr3ndonland%2Finboard","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbr3ndonland%2Finboard/lists"}