diff --git a/.gitignore b/.gitignore index b2eaea0..7707cfa 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,7 @@ # generic temporary / dev files *.pyc *.sh -!/alpine_install.sh +!/install_*.sh *.note *.xcf nohup.out diff --git a/README.md b/README.md index 09734a7..96add9d 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Also neat: You can use your **custom artist or track images**. ## How to install -1) Download Maloja with the command `pip install malojaserver`. Make sure to use the correct python version (Use `pip3` if necessary). I've provided a simple .sh file to get Maloja going on an Alpine server (e.g. in Proxmox). +1) Download Maloja with the command `pip install malojaserver`. Make sure to use the correct python version (Use `pip3` if necessary). I've provided a simple .sh file to get Maloja going on an Alpine or Ubuntu server / container. 2) Start the server with diff --git a/alpine_install.sh b/install_alpine.sh similarity index 100% rename from alpine_install.sh rename to install_alpine.sh diff --git a/install_ubuntu.sh b/install_ubuntu.sh new file mode 100644 index 0000000..ff0bd66 --- /dev/null +++ b/install_ubuntu.sh @@ -0,0 +1,4 @@ +#!/usr/bin/env bash +apt update +apt install python3 python3-pip +pip3 install malojaserver