GitHub would be the opposite of kiss in my opinion. External dependencies and pushing to remote servers are just pain points.
> git init --bare
On your remote server is all you need to spawn a repo to push to, usually hook examples already included.
The hook can then directly checkout to my live directory, run migrations and restart the server without weird remote automations after every (or specified) push.
Gitea is just a little extra (setup once, touch never thingy) for quick edits and checks (it's a wonderful lightweight piece of software too)
> git init --bare
On your remote server is all you need to spawn a repo to push to, usually hook examples already included.
The hook can then directly checkout to my live directory, run migrations and restart the server without weird remote automations after every (or specified) push.
Gitea is just a little extra (setup once, touch never thingy) for quick edits and checks (it's a wonderful lightweight piece of software too)