Skip to content

Commit 6b2e8a7

Browse files
author
Lasim
committed
feat(all): added support for claude code
1 parent 3aaf75c commit 6b2e8a7

File tree

22 files changed

+760
-241
lines changed

22 files changed

+760
-241
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ desktop.ini
1111
*.sln
1212
*.sw?
1313

14+
# AI
15+
CLAUDE.md
16+
.claude/
17+
1418
# Node.js dependencies
1519
node_modules
1620
dist

docker-compose.yml

Lines changed: 0 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -23,35 +23,6 @@ services:
2323
retries: 3
2424
start_period: 40s
2525

26-
satellite:
27-
image: deploystack/satellite:latest
28-
container_name: deploystack-satellite
29-
ports:
30-
- "3001:3001"
31-
environment:
32-
- NODE_ENV=production
33-
- PORT=3001
34-
- LOG_LEVEL=info
35-
- DEPLOYSTACK_BACKEND_URL=http://backend:3000
36-
- DEPLOYSTACK_SATELLITE_NAME=docker-satellite-001
37-
# Registration token required for first startup only
38-
# After initial registration, credentials are saved to persistent storage
39-
- DEPLOYSTACK_REGISTRATION_TOKEN=${DEPLOYSTACK_REGISTRATION_TOKEN}
40-
volumes:
41-
- deploystack_satellite_persistent:/app/persistent_data
42-
networks:
43-
- deploystack-network
44-
restart: unless-stopped
45-
depends_on:
46-
backend:
47-
condition: service_healthy
48-
healthcheck:
49-
test: ["CMD", "curl", "-f", "http://localhost:3001/api/health"]
50-
interval: 30s
51-
timeout: 10s
52-
retries: 3
53-
start_period: 40s
54-
5526
frontend:
5627
image: deploystack/frontend:latest
5728
container_name: deploystack-frontend
@@ -66,14 +37,10 @@ services:
6637
depends_on:
6738
backend:
6839
condition: service_healthy
69-
satellite:
70-
condition: service_healthy
7140

7241
volumes:
7342
deploystack_backend_persistent:
7443
driver: local
75-
deploystack_satellite_persistent:
76-
driver: local
7744

7845
networks:
7946
deploystack-network:

0 commit comments

Comments
 (0)