summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorng <�>2022-09-24 20:36:04 +0200
committerng <�>2022-09-24 20:36:04 +0200
commitb14d2e6c6e8dc29092a787de313c789a74305c78 (patch)
tree1982e7c3e5dd02b067e25a3e89f3a53f3bd2bab5 /Makefile
parent9dedf14f64f22d4149047776b5cfa5612901d743 (diff)
downloadtaler-merchant-demos-b14d2e6c6e8dc29092a787de313c789a74305c78.tar.gz
taler-merchant-demos-b14d2e6c6e8dc29092a787de313c789a74305c78.tar.bz2
taler-merchant-demos-b14d2e6c6e8dc29092a787de313c789a74305c78.zip
fix: 🐛 Content should no longer shift on button hover
Might look weird on weird UAs (opera, safari, etc...) idk
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile20
1 files changed, 9 insertions, 11 deletions
diff --git a/Makefile b/Makefile
index cf1e299..5e3adff 100644
--- a/Makefile
+++ b/Makefile
@@ -25,15 +25,14 @@ setup-arch:
echo "Configuring..."
./configure --destination=local
echo "Installing Pip Dependencies..."
+ echo "-> Installing wheel..."
+ pip install wheel
echo "-> Installing uwsgi..."
pip install uwsgi
echo "-> Installing lxml..."
pip install lxml
-# NOTE: This is likely redundant now!
- echo "Installing NPM..."
- sudo pacman -S npm
- echo "Upgrading NodeJS..."
- npm i -g npm node
+ echo "-> Installing poetry..."
+ pip install poetry
echo "Done!"
setup-deb:
@@ -43,19 +42,18 @@ setup-deb:
echo "Updating Package Repositories..."
sudo apt update -y
echo "Installing python, python-flask-babel, python-pip, python-is-python3..."
- sudo apt install -y python3 python-flask-babel python-pip python-is-python3
+ sudo apt install -y python3 python3-flask-babel python3-pip python-is-python3
echo "Configuring..."
./configure --destination=local
echo "Installing Pip Dependencies..."
+ echo "-> Installing wheel..."
+ pip install wheel
echo "-> Installing uwsgi..."
pip install uwsgi
echo "-> Installing lxml..."
pip install lxml
-# NOTE: This is likely redundant now!
- echo "Installing NPM..."
- sudo apt install npm
- echo "Upgrading NodeJS..."
- npm i -g npm node
+ echo "-> Installing poetry..."
+ pip install poetry
echo "Done!"
.PHONY: install-global