1 files changed, 15 insertions, 1 deletions
diff --git a/DEPLOY.md b/DEPLOY.md
index 302edaa..a427ed7 100644
--- a/DEPLOY.md
+++ b/DEPLOY.md
@@ -28,9 +28,23 @@ services.safeNSound = {
## Other Linux distros:
+### Preparation
+
+Make sure you have the following installed:
+- Node.js (v22 or later)
+- MongoDB
+
+```shell
+git clone --recursive https://cgit.rory.gay/school/nodejs-final-assignment.git/
+cd nodejs-final-assignment
+npm i
+```
+
+### Installation
+
Please see your service manager:
- systemd (Debian, Arch, Fedora, ...): /etc/systemd/system/SafeNSound.service (see [example](https://cgit.rory.gay/school/nodejs-final-assignment.git/tree/doc/systemd.service))
-- sysvinit/openrc/... (Alpine, Gentoo, Devuan, ...): /etc/init.d/SafeNSound
+- Other: please refer to your service manager's documentation.
## General setup considerations:
- Do not run as root!
|