-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitops.config.ts
More file actions
33 lines (31 loc) 路 948 Bytes
/
Copy pathgitops.config.ts
File metadata and controls
33 lines (31 loc) 路 948 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import type { CreateGitopsConfig } from './src/lib/gitops_config.js';
const config: CreateGitopsConfig = () => {
return {
repos: [
'https://github.com/fuzdev/fuz_app',
'https://github.com/fuzdev/fuz_css',
'https://github.com/fuzdev/fuz_ui',
'https://github.com/fuzdev/gro',
'https://github.com/fuzdev/fuz_util',
'https://github.com/fuzdev/fuz_template',
'https://github.com/fuzdev/fuz_blog',
'https://github.com/fuzdev/fuz_mastodon',
'https://github.com/fuzdev/fuz_code',
'https://github.com/fuzdev/mdz',
'https://github.com/fuzdev/svelte-docinfo',
'https://github.com/fuzdev/tsv',
'https://github.com/fuzdev/tsv.fuz.dev',
{
repo_url: 'https://github.com/fuzdev/zzz',
branch: 'fuz-app'
},
'https://github.com/fuzdev/fuz_docs',
{
repo_url: 'https://github.com/fuzdev/fuz_gitops',
branch: 'main'
}
// 'https://github.com/fuzdev/fuz.dev',
]
};
};
export default config;