Jump to content

Gitea: Difference between revisions

From Official NixOS Wiki
Onny (talk | contribs)
See also: Add reference to Forgjeo
Onny (talk | contribs)
 
Line 18: Line 18:


* [[Gitlab]], a web application offers git repository management, code reviews, issue tracking, activity feeds and wikis.
* [[Gitlab]], a web application offers git repository management, code reviews, issue tracking, activity feeds and wikis.
* [[Forgjeo]], a web application offers Git development repositories and project management. Community fork of Gitea.
* [[Forgejo]], a web application offers Git development repositories and project management. Community fork of Gitea.


[[Category:Server]]
[[Category:Server]]
[[Category:Web Applications]]
[[Category:Web Applications]]

Latest revision as of 09:58, 15 December 2025

Gitea is a web app, Git development repository and project management.

Installation

To setup Gitea locally, this is the most minimal configuration to get started

❄︎ /etc/nixos/configuration.nix
gitea = {
  enable = true;
  database.type = "mysql";
  settings.service.DISABLE_REGISTRATION = true;
};

After that, the web frontend will be available at http://localhost:3000

See also

  • Gitlab, a web application offers git repository management, code reviews, issue tracking, activity feeds and wikis.
  • Forgejo, a web application offers Git development repositories and project management. Community fork of Gitea.