aboutsummaryrefslogtreecommitdiffstats
path: root/build/generate-bindata.go
diff options
context:
space:
mode:
authorMike L <cl.jeremy@qq.com>2021-04-09 22:53:16 +0200
committerGitHub <noreply@github.com>2021-04-09 16:53:16 -0400
commit013657ec76c1830f4baf76ee0d83892420b6611c (patch)
treebc07a4498811134938973b6733ab56c691e70ad3 /build/generate-bindata.go
parentafa781bf20e365dc3f524b2555767ca34fe37f7e (diff)
downloadgitea-013657ec76c1830f4baf76ee0d83892420b6611c.tar.gz
gitea-013657ec76c1830f4baf76ee0d83892420b6611c.zip
Use semantic dropdown for code search query type (#15276)
Add comments to CSS rules Co-authored-by: zeripath <art27@cantab.net>
Diffstat (limited to 'build/generate-bindata.go')
0 files changed, 0 insertions, 0 deletions
pdate-code-signing-crl Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
summaryrefslogtreecommitdiffstats
path: root/tests/preseed-config.php
blob: e2c5a55fa58fb633f592539c878451a80cbbeeb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?php
$CONFIG = [
	'appstoreenabled' => false,
	'apps_paths' => [
		[
			'path'		=> OC::$SERVERROOT . '/apps',
			'url'		=> '/apps',
			'writable'	=> true,
		],
	],
];

if (is_dir(OC::$SERVERROOT.'/apps2')) {
	$CONFIG['apps_paths'][] = [
		'path' => OC::$SERVERROOT . '/apps2',
		'url' => '/apps2',
		'writable' => false,
	];
}

if (substr(strtolower(PHP_OS), 0, 3) === 'win') {
	$CONFIG['openssl'] = ['config' => OC::$SERVERROOT . '/tests/data/openssl.cnf'];
}