Self-hosted Git with Gitea
Running your own Git forge: the server, repositories, and the API the rest of the platform automates against.
Why self-host Git
Git is distributed, but teams still need a central place to push to, open pull requests, and trig...
The server
Gitea here is a straightforward binary install: the gitea service listening on port 3000, a light...
The API: where automation hooks in
A forge earns its keep through its API. Gitea exposes a full REST API, authenticated with a token...
Lessons on the Git server
Owning the forge closes the loop. Code → CI → registry → cluster, all in one network you control...