Skip to content

Commit 8ffcb19

Browse files
committed
minor #151 [Demo] Remove path repositories in composer docker setup of demo app (chr-hertel)
This PR was merged into the main branch. Discussion ---------- [Demo] Remove path repositories in composer docker setup of demo app | Q | A | ------------- | --- | Bug fix? | yes | New feature? | no | Docs? | no | Issues | | License | MIT Missed that with #82 Commits ------- 230e95e Remove path repositories in composer docker setup of demo app
2 parents 712a277 + 230e95e commit 8ffcb19

File tree

3 files changed

+154
-119
lines changed

3 files changed

+154
-119
lines changed

demo/compose.yaml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@ services:
33
image: dunglas/frankenphp
44
volumes:
55
- ./:/app
6-
- ../src/agent:/src/agent
7-
- ../src/ai-bundle:/src/ai-bundle
8-
- ../src/platform:/src/platform
9-
- ../src/store:/src/store
106
ports:
117
- 443:443
128
tty: true
@@ -15,10 +11,6 @@ services:
1511
image: composer:latest
1612
volumes:
1713
- ./:/app
18-
- ../src/agent:/src/agent
19-
- ../src/ai-bundle:/src/ai-bundle
20-
- ../src/platform:/src/platform
21-
- ../src/store:/src/store
2214

2315
chromadb:
2416
image: chromadb/chroma:0.5.23

demo/composer.json

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -113,11 +113,5 @@
113113
"phpstan analyse",
114114
"XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-html=coverage"
115115
]
116-
},
117-
"repositories": [
118-
{ "type": "path", "url": "../src/agent" },
119-
{ "type": "path", "url": "../src/ai-bundle" },
120-
{ "type": "path", "url": "../src/platform" },
121-
{ "type": "path", "url": "../src/store" }
122-
]
116+
}
123117
}

0 commit comments

Comments
 (0)