From 12cc7f03f8838ef4099ce392ff8a55ded99f7267 Mon Sep 17 00:00:00 2001 From: Roberto Beltran Date: Tue, 11 May 2021 15:14:00 -0400 Subject: [PATCH] node dependencies can be added from make file --- README.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index d37187c9..f76d899b 100644 --- a/README.md +++ b/README.md @@ -10,17 +10,21 @@ A privacy-respecting, hackable [metasearch engine](https://en.wikipedia.org/wiki ## Dependencies -You need virtualenv and less with the clean-css plugin +You need npm, see [our tutorial](https://libremiami.org/how-to-install-npm-and-node/) if you need help. +You need pip and virtualenv ``` +sudo apt install python3-pip # on debian, trisquel pip install virtualenv ``` + +Install node dependencies ``` -npm install less less-plugin-clean-css +make node.env ``` -Then the makefile works +Then you can then prepare the themes and run the dev environment as needed ``` make themes make run -``` \ No newline at end of file +```