From 48d59b6f9081e255e64a6c6974b00dc6b8de436f Mon Sep 17 00:00:00 2001 From: AINDUSTRIES Date: Mon, 6 Oct 2025 22:33:48 +0200 Subject: [PATCH] Added service file to run server on linux (systemd) --- aindustries-be.service | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 aindustries-be.service diff --git a/aindustries-be.service b/aindustries-be.service new file mode 100644 index 0000000..b702412 --- /dev/null +++ b/aindustries-be.service @@ -0,0 +1,15 @@ +[Unit] +Description=aindustries.be website +After=network.target + +[Service] +Type=simple +Restart=always +RestartSec=1 +# Change with proper user to run the service +User=web +# Change with the installation location of the executable +ExecStart=/usr/share/bin/aindustries-be + +[Install] +WantedBy=multi-user.target \ No newline at end of file