Skip to content

Commit

Permalink
Merge pull request #2250 from tarlepp/new-makefile-command
Browse files Browse the repository at this point in the history
Feat - Added new `Makefile` command and updated documentation
  • Loading branch information
tarlepp committed Mar 12, 2023
2 parents 6f0cdaf + dcd5e5d commit b2eb07a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Makefile
Expand Up @@ -836,3 +836,11 @@ else
@HOST_UID=$(HOST_UID) HOST_GID=$(HOST_GID) docker rmi $$(docker images -q)
$(ALL_DONE)
endif
generate-ssl-cert: ## Generate self signed SSL certificates
ifeq ($(INSIDE_DOCKER), 1)
$(WARNING_HOST)
else
@echo "\033[32mGenerating self signed SSL certificates\033[39m"
@cd docker/nginx/ssl && ./create-keys.sh
endif
1 change: 1 addition & 0 deletions doc/COMMANDS.md
Expand Up @@ -86,6 +86,7 @@ ecs-fix # Runs The Easiest Way to Use Any Coding Standard
ecs # Runs The Easiest Way to Use Any Coding Standard
fish # Get fish inside PHP container
generate-jwt-keys # Generates JWT auth keys
generate-ssl-cert # Generate self signed SSL certificates
infection # Runs Infection to codebase
install-bin # Install composer bin dependencies
lint-configuration # Lint current defined `application.json` that it
Expand Down

0 comments on commit b2eb07a

Please sign in to comment.