You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
529 B

NAME = transcendence
USER = gavaniwast
2 years ago
all: clean dev
2 years ago
dev:
2 years ago
NODE_ENV="development" docker-compose up --build
check:
2 years ago
NODE_ENV="check" docker-compose run back --build
NODE_ENV="check" docker-compose run front --build
docker-compose down
debug:
2 years ago
NODE_ENV="debug" BUILDKIT_PROGRESS=plain docker-compose up --build
stop:
2 years ago
docker-compose down
clean: stop
2 years ago
docker system prune -f
fclean: stop
2 years ago
rm -rf */volume/node_modules
2 years ago
docker system prune -af --volumes
2 years ago
re: fclean dev
2 years ago
.PHONY: all dev check debug stop clean fclean re