Skip to content

Commit 2cef2a8

Browse files
authored
docs: Update setup instructions to contain composer scripts (#2)
With the first step one should, as a last thing, execute `docker compose run composer install --no-scripts` and then call https://localhost/ and see a chatbot UI. In fact there is an exception with the Symfony App Setup instructions that the assets are not installed. The only thing that happens during composer install is a warning to the docker container. ``` $ docker compose run composer install --no-scripts The repository at "/app" does not have the correct ownership and git refuses to use it: fatal: detected dubious ownership in repository at '/app' To add an exception for this directory, call: git config --global --add safe.directory /app ``` But this is not a problem. What is missing is the execution of the script. When i execute `docker compose run composer install` it works and there is no exception. What was your reason to not execute the scripts, that contain the import map stuff?
1 parent da78831 commit 2cef2a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Checkout the repository, start the docker environment and install dependencies:
3838
git clone [email protected]:php-llm/symfony-demo.git
3939
cd symfony-demo
4040
docker compose up -d
41-
docker compose run composer install --no-scripts
41+
docker compose run composer install
4242
```
4343

4444
Now you should be able to open https://localhost/ in your browser,

0 commit comments

Comments
 (0)