1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-06-27 16:36:00 +00:00

Allow custom styles system wide

Should fix #4060
This commit is contained in:
Luc Didry 2019-10-09 18:20:26 +02:00
parent afe486531d
commit 7a4c375ebf
No known key found for this signature in database
GPG key ID: EA868E12D0257E3C
3 changed files with 9 additions and 2 deletions

View file

@ -10,14 +10,14 @@ help: ## Display this help menu
clean: ## Clear the application cache
rm -rf var/cache/*
install: ## Install wallabag with the latest version
install: customcss ## Install wallabag with the latest version
@./scripts/install.sh $(ENV)
update: ## Update the wallabag installation to the latest version
@./scripts/update.sh $(ENV)
dev: ENV=dev
dev: build ## Install the latest dev version
dev: build customcss ## Install the latest dev version
@./scripts/dev.sh
run: ## Run the wallabag built-in server
@ -27,6 +27,9 @@ build: ## Run webpack
@npm install
@npm run build:$(ENV)
customcss:
@touch web/custom.css
prepare: clean ## Prepare database for testsuite
ifdef DB
cp app/config/tests/parameters_test.$(DB).yml app/config/parameters_test.yml