This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/Makefile

30 lines
504 B
Makefile
Raw Normal View History

2018-01-31 00:03:41 +00:00
ENV := dev
PORT := 8000
.PHONY: test
2018-01-31 07:12:31 +00:00
all: init generate-assets build
2018-01-31 00:03:41 +00:00
clean:
rm -rf \
node_modules \
output_* \
2018-03-01 08:23:43 +00:00
source/build \
2018-01-31 00:03:41 +00:00
vendor
init:
composer install
yarn install
generate-assets:
yarn run encore dev
build:
2018-03-03 12:25:57 +00:00
vendor/bin/sculpin generate --env=$(ENV) --clean --no-interaction
2018-01-31 00:03:41 +00:00
serve:
2018-03-03 12:25:57 +00:00
vendor/bin/sculpin generate --server --env=$(ENV) --port=$(PORT) --clean --no-interaction
2018-01-31 00:03:41 +00:00
watch:
2018-03-03 12:25:57 +00:00
vendor/bin/sculpin generate --server --env=$(ENV) --port=$(PORT) --watch --clean --no-interaction