-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitops.config.ts
More file actions
25 lines (23 loc) · 706 Bytes
/
gitops.config.ts
File metadata and controls
25 lines (23 loc) · 706 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
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/fuz_docs',
{
repo_url: 'https://github.com/fuzdev/fuz_gitops',
branch: 'main',
},
// 'https://github.com/fuzdev/fuz.dev',
],
};
};
export default config;