diff options
author | ashnitman <alex.shnitman@cyberark.com> | 2021-01-03 09:49:57 +0200 |
---|---|---|
committer | ashnitman <alex.shnitman@cyberark.com> | 2021-01-03 09:49:57 +0200 |
commit | 5fa2aee6ec6c4877a6dc297326ec76846b5678f8 (patch) | |
tree | 0ffad84272d3ecac5c9d089f6158f632af4c385c | |
parent | upgrade dependencies (diff) | |
download | metube-5fa2aee6ec6c4877a6dc297326ec76846b5678f8.tar.gz metube-5fa2aee6ec6c4877a6dc297326ec76846b5678f8.tar.bz2 metube-5fa2aee6ec6c4877a6dc297326ec76846b5678f8.zip |
fix manual install instructions in README (closes #8)
-rw-r--r-- | README.md | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -52,11 +52,12 @@ location /metube/ { Make sure you have node.js and Python 3.8 installed.
```bash
-cd metube
+cd metube/ui
# install Angular and build the UI
npm install
node_modules/.bin/ng build
# install python dependencies
+cd ..
pip3 install pipenv
pipenv install
# run
|