mirror of
https://github.com/go-gitea/gitea
synced 2024-10-31 23:34:25 +00:00
69dfe43ffc
* Fix test : make coverage -> test * Refactor integration tests to be able to run them in parallel * Add custom local repository temp path
62 lines
1.1 KiB
INI
62 lines
1.1 KiB
INI
APP_NAME = Gitea: Git with a cup of tea
|
|
RUN_MODE = prod
|
|
|
|
[database]
|
|
DB_TYPE = postgres
|
|
HOST = pgsql:5432
|
|
NAME = testgitea
|
|
USER = postgres
|
|
PASSWD = postgres
|
|
SSL_MODE = disable
|
|
PATH = data/gitea.db
|
|
|
|
[repository]
|
|
ROOT = integrations/gitea-integration-pgsql/gitea-repositories
|
|
|
|
[repository.local]
|
|
LOCAL_COPY_PATH = tmp/local-repo-pgsql
|
|
|
|
[server]
|
|
SSH_DOMAIN = localhost
|
|
HTTP_PORT = 3002
|
|
ROOT_URL = http://localhost:3002/
|
|
DISABLE_SSH = false
|
|
SSH_PORT = 22
|
|
LFS_START_SERVER = false
|
|
OFFLINE_MODE = false
|
|
|
|
[mailer]
|
|
ENABLED = false
|
|
|
|
[service]
|
|
REGISTER_EMAIL_CONFIRM = false
|
|
ENABLE_NOTIFY_MAIL = false
|
|
DISABLE_REGISTRATION = false
|
|
ENABLE_CAPTCHA = false
|
|
REQUIRE_SIGNIN_VIEW = false
|
|
DEFAULT_KEEP_EMAIL_PRIVATE = false
|
|
DEFAULT_ALLOW_CREATE_ORGANIZATION = true
|
|
NO_REPLY_ADDRESS = noreply.example.org
|
|
|
|
[picture]
|
|
DISABLE_GRAVATAR = false
|
|
ENABLE_FEDERATED_AVATAR = false
|
|
|
|
[session]
|
|
PROVIDER = file
|
|
|
|
[log]
|
|
MODE = console,file
|
|
ROOT_PATH = pgsql-log
|
|
|
|
[log.console]
|
|
LEVEL = Warn
|
|
|
|
[log.file]
|
|
LEVEL = Debug
|
|
|
|
[security]
|
|
INSTALL_LOCK = true
|
|
SECRET_KEY = 9pCviYTWSb
|
|
INTERNAL_TOKEN = test
|