diff --git a/.project/TYPO3/.env.local b/.project/TYPO3/.env.local new file mode 100644 index 00000000..b4cccda1 --- /dev/null +++ b/.project/TYPO3/.env.local @@ -0,0 +1,2 @@ +WIREDMINDS_ENABLE=0 +WIREDMINDS_TOKEN= diff --git a/Makefile b/Makefile index cc50ad8f..ea0b127c 100644 --- a/Makefile +++ b/Makefile @@ -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: @@ -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)/;