mirror of https://github.com/go-gitea/gitea.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
536 B
18 lines
536 B
// Copyright 2024 The Gitea Authors. All rights reserved. |
|
// SPDX-License-Identifier: MIT |
|
|
|
package setting |
|
|
|
// Global settings |
|
var ( |
|
// RunUser is the OS user that Gitea is running as. ini:"RUN_USER" |
|
RunUser string |
|
// RunMode is the running mode of Gitea, it only accepts two values: "dev" and "prod". |
|
// Non-dev values will be replaced by "prod". ini: "RUN_MODE" |
|
RunMode string |
|
// IsProd is true if RunMode is not "dev" |
|
IsProd bool |
|
|
|
// AppName is the Application name, used in the page title. ini: "APP_NAME" |
|
AppName string |
|
)
|
|
|