diff options
-rwxr-xr-x | Makefile | 3 | ||||
-rw-r--r-- | scripts/dev.sh | 7 |
2 files changed, 10 insertions, 0 deletions
@@ -17,6 +17,9 @@ install: ## Install wallabag with the latest version | |||
17 | update: ## Update the wallabag installation to the latest version | 17 | update: ## Update the wallabag installation to the latest version |
18 | @sh scripts/update.sh $(ENV) | 18 | @sh scripts/update.sh $(ENV) |
19 | 19 | ||
20 | dev: ## Install the latest dev version | ||
21 | @sh scripts/dev.sh | ||
22 | |||
20 | run: ## Run the wallabag built-in server | 23 | run: ## Run the wallabag built-in server |
21 | @php bin/console server:run --env=$(ENV) | 24 | @php bin/console server:run --env=$(ENV) |
22 | 25 | ||
diff --git a/scripts/dev.sh b/scripts/dev.sh new file mode 100644 index 00000000..9b89da35 --- /dev/null +++ b/scripts/dev.sh | |||
@@ -0,0 +1,7 @@ | |||
1 | #! /usr/bin/env bash | ||
2 | # You can execute this file to install wallabag dev environmnet | ||
3 | # eg: `sh install.sh prod` | ||
4 | |||
5 | composer install | ||
6 | php bin/console wallabag:install | ||
7 | php bin/console server:run | ||