That was a painless installation. Seriously, this is something to immitate if you mean for your self-hosted application to be widely used. If only other self-hosted/distributed projects were this easy to install. I skiped on discourse, mastodon, gitlab, etc. because they were all pain to setup on a base linux system.
Very like Gogs. I'm not a fan of Go, but it does lead people into some right decisions, that Ruby and Python lead them away from. Anyway, the problems start when you want to be sure it's running all the time your server is on, and on integrating it with your other web applications. Still, it's strictly better than interpreted environments.
Gitea: Open source, self-hosted GitHub alternative
101–110 of 241 posts
Re: Gitea: Open source, self-hosted GitHub alternative
#102How does this compare to GitLab?
I was also wondering this, plus kind of expecting it to be hosted on gitea. Being hosted on github lowers my confidence.
Re: Gitea: Open source, self-hosted GitHub alternative
#103What are the benefits and use cases for hosting your own over just using github/gitlab/bitbucket even google cloud and aws offer options too?
There are enough people and companies that don't trust these american companies, or they are forced to keep code within there network... Not everybody wants to give his stuff into the hands of others ;)
Re: Gitea: Open source, self-hosted GitHub alternative
#104devops sysadmin here. I started with gitlab about a year ago and can honestly say I wish I had taken gogs/gitea instead. The main problem for me is gitlabs utter dearth of somewhat counterproductive features. Git LFS support is almost a cruel joke in gitlab as git operations under the hood now take inexorably more ram to complete. In turn im rewarded with more traditional RCS programmers asking why git has problems w…
> [...] and implement competent things like competent CI [...] I've got an OSX build box with a bunch of virtualbox VMs so I can build for Gnu/Linux (i386, x86_64, and arm), OSX, and Windows. Single slow box, so one runner at a time. It has to be running OSX because I haven't found any way to run an OSX VM on any other platform. I want to trigger CI on Gitlab merge requests. What does $competent_CI expand to?
Re: Gitea: Open source, self-hosted GitHub alternative
#105What are the benefits and use cases for hosting your own over just using github/gitlab/bitbucket even google cloud and aws offer options too?
Re: Gitea: Open source, self-hosted GitHub alternative
#106devops sysadmin here. I started with gitlab about a year ago and can honestly say I wish I had taken gogs/gitea instead. The main problem for me is gitlabs utter dearth of somewhat counterproductive features. Git LFS support is almost a cruel joke in gitlab as git operations under the hood now take inexorably more ram to complete. In turn im rewarded with more traditional RCS programmers asking why git has problems w…
> gitlab [...] also [...] has no HA roadmap in sight unless you
> want to break apart its rube-goldberg structure and attempt to
> HA the individual components of it.
We run a very large in-house GitLab installation and the HA is easy
because:1) GitLab stores data on the FS, and you can outsource this problem to e.g. a NetApp filer.
2) The data it doesn't store on NFS it stores in psql or MySQL, which has established HA solutions.
Once you have that set up you can load-balance the GitLab nodes and provision / destroy them at will.
Re: Gitea: Open source, self-hosted GitHub alternative
#107That was a painless installation. Seriously, this is something to immitate if you mean for your self-hosted application to be widely used. If only other self-hosted/distributed projects were this easy to install. I skiped on discourse, mastodon, gitlab, etc. because they were all pain to setup on a base linux system.
Very like Gogs. I'm not a fan of Go, but it does lead people into some right decisions, that Ruby and Python lead them away from. Anyway, the problems start when you want to be sure it's running all the time your server is on, and on integrating it with your other web applications. Still, it's strictly better than interpreted environments.
If languages are making decisions for you, you aren't engineering software.
Re: Gitea: Open source, self-hosted GitHub alternative
#108Although just seeing how trivial it was to deploy now I'm thinking about maybe running this in parallel at least. I still like being able to use CVS from ancient machines... But this does look nice. I guess time to look at cvs2git.
Re: Gitea: Open source, self-hosted GitHub alternative
#109Re: Gitea: Open source, self-hosted GitHub alternative
#110So I keep a few GB of source online via CVS http://unix.superglobalmegacorp.com/ , and I have been shying away from git anything as I did a gitlab install for someone and was amazed at how much hardware I had to throw at it, unlike CVS+CVSWeb. Although just seeing how trivial it was to deploy now I'm thinking about maybe running this in parallel at least. I still like being able to use CVS from ancient machines... Bu…