Skip to content

Commit

Permalink
[BUGFIX] Copy .env.local when doing a make install-project
Browse files Browse the repository at this point in the history
  • Loading branch information
einpraegsam committed Oct 27, 2024
1 parent 8ccb39d commit 4f13a88
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .project/TYPO3/.env.local
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
WIREDMINDS_ENABLE=0
WIREDMINDS_TOKEN=
2 changes: 2 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ ifeq ($(shell uname -s), Darwin)
else
ln -snf .project/docker/docker-compose.unix.yml docker-compose.yml
endif
cp -n .project/TYPO3/.env.local .

## Install Frontend Build Tool Chain dependencies
npm-install:
Expand All @@ -124,6 +125,7 @@ npm-stop:
## Initialize the docker setup
init-docker: create-dirs create-certificate
echo "$(EMOJI_rocket) Initializing docker environment"
cp -n .project/TYPO3/.env.local .
docker-compose pull
docker-compose up -d --build
docker-compose exec -u root php chown -R app:app /app/$(WEBROOT)/$(TYPO3_CACHE_DIR)/;
Expand Down

0 comments on commit 4f13a88

Please sign in to comment.