1
0
Fork 0
forked from forgejo/forgejo

[BRANDING] Rebrand default config settings for new installs (#140)

Replaces `Gitea` with `Forgejo` in the default config settings for new installs.

This will not affect existing installs.

Co-authored-by: Caesar Schinas <caesar@caesarschinas.com>
Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/140
Co-authored-by: Caesar Schinas <caesar@noreply.codeberg.org>
Co-committed-by: Caesar Schinas <caesar@noreply.codeberg.org>
(cherry picked from commit bd7c076623)
This commit is contained in:
Caesar Schinas 2022-12-19 20:01:46 +00:00 committed by Loïc Dachary
parent 9bc830f1b4
commit 5f47458a28
No known key found for this signature in database
GPG key ID: 992D23B392F9E4F2
6 changed files with 7 additions and 7 deletions

View file

@ -5,8 +5,8 @@ export function initInstall() {
return;
}
const defaultDbUser = 'gitea';
const defaultDbName = 'gitea';
const defaultDbUser = 'forgejo';
const defaultDbName = 'forgejo';
const defaultDbHosts = {
mysql: '127.0.0.1:3306',