-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy path.devfile.yaml
More file actions
38 lines (36 loc) · 789 Bytes
/
.devfile.yaml
File metadata and controls
38 lines (36 loc) · 789 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
34
35
36
37
schemaVersion: 2.3.0
metadata:
name: jumpstarter-dev
icon: https://jumpstarter.dev/jumpstarter.svg
tags:
- Python
- UV
- Jumpstarter
language: Python
projects:
- name: jumpstarter
git:
remotes:
origin: https://github.com/jumpstarter-dev/jumpstarter.git
components:
- name: runtime
container:
image: quay.io/jumpstarter-dev/jumpstarter-dev:latest
mountSources: true
commands:
- id: serve-docs
exec:
component: runtime
commandLine: make docs-serve DOC_LISTEN="--host 0.0.0.0"
- id: sync
exec:
component: runtime
commandLine: make sync
- id: clean
exec:
component: runtime
commandLine: make clean
- id: test
exec:
component: runtime
commandLine: make test