Gitea: Difference between revisions
Appearance
m Updated incorrect syntax |
|||
| Line 5: | Line 5: | ||
To setup Gitea locally, this is the most minimal configuration to get started | To setup Gitea locally, this is the most minimal configuration to get started | ||
{{ | {{File|3=services.gitea = { | ||
gitea = { | |||
enable = true; | enable = true; | ||
database.type = "mysql"; | database.type = "mysql"; | ||
settings.service.DISABLE_REGISTRATION = true; | settings.service.DISABLE_REGISTRATION = true; | ||
}; | };|name=/etc/nixos/configuration.nix|lang=nix}} | ||
After that, the web frontend will be available at http://localhost:3000 | After that, the web frontend will be available at http://localhost:3000 | ||
Revision as of 21:46, 19 January 2026
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
services.gitea = {
enable = true;
database.type = "mysql";
settings.service.DISABLE_REGISTRATION = true;
};
After that, the web frontend will be available at http://localhost:3000