diff --git a/Makefile b/Makefile index e7606b3..46f3609 100644 --- a/Makefile +++ b/Makefile @@ -167,7 +167,7 @@ endif ssh-nginx: ## Get bash inside nginx docker container ifeq ($(INSIDE_DOCKER_CONTAINER), 0) - @HOST_UID=$(HOST_UID) HOST_GID=$(HOST_GID) WEB_PORT_HTTP=$(WEB_PORT_HTTP) WEB_PORT_SSL=$(WEB_PORT_SSL) XDEBUG_CONFIG=$(XDEBUG_CONFIG) INNODB_USE_NATIVE_AIO=$(INNODB_USE_NATIVE_AIO) SQL_MODE=$(SQL_MODE) docker-compose $(PROJECT_NAME) exec nginx /bin/sh + @HOST_UID=$(HOST_UID) HOST_GID=$(HOST_GID) WEB_PORT_HTTP=$(WEB_PORT_HTTP) WEB_PORT_SSL=$(WEB_PORT_SSL) XDEBUG_CONFIG=$(XDEBUG_CONFIG) MYSQL_VERSION=$(MYSQL_VERSION) INNODB_USE_NATIVE_AIO=$(INNODB_USE_NATIVE_AIO) SQL_MODE=$(SQL_MODE) docker-compose $(PROJECT_NAME) exec nginx /bin/sh else $(ERROR_ONLY_FOR_HOST) endif diff --git a/docs/development.md b/docs/development.md index 4a1a0c9..e01af1c 100644 --- a/docs/development.md +++ b/docs/development.md @@ -175,7 +175,6 @@ The platform can be integrated into any CI/CD pipeline and can analyze code. If you are using IDE PHPStorm, you can use it via menu `Tools` -> `Qodana` -> `Try Code Analysis with Qodana` -> `Try Locally` -> `Run`. You can find some video [here](https://blog.jetbrains.com/qodana/2023/09/code-quality-under-pressure-supporting-developers-with-qodana-integration-in-intellij-based-ides/) or more info [here](https://www.jetbrains.com/help/qodana/getting-started.html). - ## Database changes Doctrine migrations it is functionality for versioning your database schema and easily deploying changes to it. Migration files contain all necessary database changes to get application running with its database structure. diff --git a/readme.md b/readme.md index 1e41042..e553855 100644 --- a/readme.md +++ b/readme.md @@ -32,7 +32,7 @@ Note: OS recommendation - Linux Ubuntu based. Note 1: Please run next cmd after above step 2 if you are using Linux OS: `sudo usermod -aG docker $USER` -Note 2: If you are using docker desktop for MacOS 12.2 or later - please enable [virtiofs](https://www.docker.com/blog/speed-boost-achievement-unlocked-on-docker-desktop-4-6-for-mac/) for performance. +Note 2: If you are using Docker Desktop for MacOS 12.2 or later - please enable [virtiofs](https://www.docker.com/blog/speed-boost-achievement-unlocked-on-docker-desktop-4-6-for-mac/) for performance (enabled by default since Docker Desktop v4.22). ## Setting up DEV environment 1.You can clone this repository from GitHub or install via composer.