mirror of
https://github.com/expressjs/expressjs.com.git
synced 2026-02-21 19:41:33 +00:00
* feat: update website to support Ruby 3.3.5 compatibility (from 3.3.1) * Updated the previous commit message to accurately reflect the update from Ruby 3.3.1 to 3.3.5 compatibility. * changed ruby version file to match the version * Typo edit: Updated from Ruby 3.1.1 to 3.3.5. * changed dockerfile to support ruby 3.3.5 * added bundle excel jekyll serve to makefile * dockerfile now handles gemfile and gemfile lock to process dependencies * revert: dockerfile now handles gemfile and gemfile lock to process dependencies * dockerfile now retains gemfile.lock * adding lock file to match dependency
28 lines
854 B
Makefile
28 lines
854 B
Makefile
GREEN := \033[1;32m
|
|
BLUE := \033[1;34m
|
|
RESET := \033[0m
|
|
|
|
# The directory of this file
|
|
DIR := $(shell echo $(shell cd "$(shell dirname "${BASH_SOURCE[0]}" )" && pwd ))
|
|
|
|
# This will output the help for each task
|
|
# thanks to https://marmelab.com/blog/2016/02/29/auto-documented-makefile.html
|
|
.PHONY: help
|
|
|
|
help: ## This help
|
|
@awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z_-]+:.*?## / {printf "${GREEN}%-30s${RESET} %s\n", $$1, $$2}' $(MAKEFILE_LIST)
|
|
|
|
.DEFAULT_GOAL := help
|
|
|
|
serve: ## Local server
|
|
@echo "${BLUE}Starting expressjs.com at http://localhost:4000${RESET}"
|
|
docker run -p 4000:4000 -p 35729:35729 -v $(DIR):/usr/src/app expressjs.com bundle exec jekyll serve --host 0.0.0.0
|
|
|
|
build: ## Build site
|
|
@echo "${BLUE}Building site...${RESET}"
|
|
docker build -t expressjs.com .
|
|
|
|
clean: ## Clean up
|
|
@echo "${BLUE}Clean up...${RESET}"
|
|
docker rmi expressjs.com
|