mirror of
https://github.com/wallabag/wallabag.git
synced 2025-01-02 21:08:43 +00:00
Bring make dev
This commit is contained in:
parent
76f2123def
commit
f48a6f3a54
2 changed files with 10 additions and 0 deletions
3
Makefile
3
Makefile
|
@ -17,6 +17,9 @@ install: ## Install wallabag with the latest version
|
||||||
update: ## Update the wallabag installation to the latest version
|
update: ## Update the wallabag installation to the latest version
|
||||||
@sh scripts/update.sh $(ENV)
|
@sh scripts/update.sh $(ENV)
|
||||||
|
|
||||||
|
dev: ## Install the latest dev version
|
||||||
|
@sh scripts/dev.sh
|
||||||
|
|
||||||
run: ## Run the wallabag built-in server
|
run: ## Run the wallabag built-in server
|
||||||
@php bin/console server:run --env=$(ENV)
|
@php bin/console server:run --env=$(ENV)
|
||||||
|
|
||||||
|
|
7
scripts/dev.sh
Normal file
7
scripts/dev.sh
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
#! /usr/bin/env bash
|
||||||
|
# You can execute this file to install wallabag dev environmnet
|
||||||
|
# eg: `sh install.sh prod`
|
||||||
|
|
||||||
|
composer install
|
||||||
|
php bin/console wallabag:install
|
||||||
|
php bin/console server:run
|
Loading…
Reference in a new issue