forked from dwmkerr/claude-code-agent
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevspace.yaml
More file actions
51 lines (45 loc) · 885 Bytes
/
devspace.yaml
File metadata and controls
51 lines (45 loc) · 885 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
version: v2beta1
vars:
ANTHROPIC_API_KEY:
source: input
question: "Enter your Anthropic API key:"
images:
claude-agent:
image: claude-agent
dockerfile: Dockerfile
context: .
pipelines:
deploy: |-
build_images --all
create_deployments --all
dev: |-
build_images --all
create_deployments --all
start_dev --all
deployments:
claude-agent:
helm:
chart:
name: ./chart
values:
image:
repository: claude-agent
apiKey: ${ANTHROPIC_API_KEY}
dev:
claude-agent:
imageSelector: claude-agent
container: claude-code-agent
command:
- sh
- -c
- |
cd /app
npm install
npm run dev
logs:
lastLines: 50
sync:
- path: .:/app
startContainer: true
disableDownload: true
uploadExcludeFile: .dockerignore