Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
16 changes: 16 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Debug download.ts",
"skipFiles": ["<node_internals>/**"],
"program": "${workspaceFolder}/node_modules/.bin/tsx",
"args": ["${workspaceFolder}/scripts/download.ts"],
"outFiles": ["${workspaceFolder}/**/*.js"],
"console": "integratedTerminal",
"envFile": "${workspaceFolder}/.env"
}
]
}
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,23 @@ Contributions are welcome!
- run `npm install`
- run `npm run dev`

### Adding/Updating projects

- add the project to the [`src/lib/kube/projects.ts`](src/lib/kube/projects.ts) file(skip for just updating)

```ts
{
name: "New Project",
slug: "new-project",
logo: "https://example.com/logo.png",
repo: "new-org/new-project",
pathToManifests: ["path/to/manifests"],
}
```

- run `GH_TOKEN=... npm run download` to download the manifests
- run `npm run dev` to check

## 📃 License

MIT
Expand Down
Loading