├── .dockerignore ├── .gitignore ├── .python-version ├── Dockerfile ├── LICENSE ├── README.md ├── fly.toml ├── pipegate ├── __init__.py ├── auth.py ├── client.py ├── schemas.py └── server.py ├── pyproject.toml └── uv.lock /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbjorge/pipegate/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbjorge/pipegate/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbjorge/pipegate/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbjorge/pipegate/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbjorge/pipegate/HEAD/README.md -------------------------------------------------------------------------------- /fly.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbjorge/pipegate/HEAD/fly.toml -------------------------------------------------------------------------------- /pipegate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pipegate/auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbjorge/pipegate/HEAD/pipegate/auth.py -------------------------------------------------------------------------------- /pipegate/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbjorge/pipegate/HEAD/pipegate/client.py -------------------------------------------------------------------------------- /pipegate/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbjorge/pipegate/HEAD/pipegate/schemas.py -------------------------------------------------------------------------------- /pipegate/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbjorge/pipegate/HEAD/pipegate/server.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbjorge/pipegate/HEAD/pyproject.toml -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janbjorge/pipegate/HEAD/uv.lock --------------------------------------------------------------------------------