@atlashub/smartstack-cli 4.59.0 → 4.60.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlashub/smartstack-cli",
3
- "version": "4.59.0",
3
+ "version": "4.60.0",
4
4
  "description": "SmartStack Claude Code automation toolkit - GitFlow, EF Core migrations, prompts and more",
5
5
  "author": {
6
6
  "name": "SmartStack",
@@ -0,0 +1,33 @@
1
+ # ============================================================
2
+ # SmartStack Docker Compose - {{ProjectName}}
3
+ # Usage: docker compose -f docker-images/docker-compose.yml up --build
4
+ # ============================================================
5
+
6
+ services:
7
+ backend:
8
+ build:
9
+ context: ..
10
+ dockerfile: docker-images/Dockerfile.backend
11
+ image: smartstack-{{ProjectNameLower}}-backend:latest
12
+ container_name: {{ProjectNameLower}}-backend
13
+ ports:
14
+ - "5142:5142"
15
+ - "5143:5143"
16
+ - "8080:8080"
17
+ environment:
18
+ - ASPNETCORE_ENVIRONMENT=Production
19
+
20
+ frontend:
21
+ build:
22
+ context: ..
23
+ dockerfile: docker-images/Dockerfile.frontend
24
+ args:
25
+ VITE_API_URL: http://localhost:5142
26
+ VITE_WS_URL: ws://localhost:5143
27
+ image: smartstack-{{ProjectNameLower}}-frontend:latest
28
+ container_name: {{ProjectNameLower}}-frontend
29
+ ports:
30
+ - "3000:3000"
31
+ depends_on:
32
+ backend:
33
+ condition: service_healthy