diff options
-rwxr-xr-x | GNUmakefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile index a04468cb..15d737db 100755 --- a/GNUmakefile +++ b/GNUmakefile | |||
@@ -16,13 +16,15 @@ install: ## Install wallabag with the latest version | |||
16 | update: ## Update the wallabag installation to the latest version | 16 | update: ## Update the wallabag installation to the latest version |
17 | @./scripts/update.sh $(ENV) | 17 | @./scripts/update.sh $(ENV) |
18 | 18 | ||
19 | dev: ## Install the latest dev version | 19 | dev: ENV=dev |
20 | dev: build ## Install the latest dev version | ||
20 | @./scripts/dev.sh | 21 | @./scripts/dev.sh |
21 | 22 | ||
22 | run: ## Run the wallabag built-in server | 23 | run: ## Run the wallabag built-in server |
23 | @php bin/console server:run --env=dev | 24 | @php bin/console server:run --env=dev |
24 | 25 | ||
25 | build: ## Run webpack | 26 | build: ## Run webpack |
27 | @npm install | ||
26 | @npm run build:$(ENV) | 28 | @npm run build:$(ENV) |
27 | 29 | ||
28 | prepare: clean ## Prepare database for testsuite | 30 | prepare: clean ## Prepare database for testsuite |