From 0731bd58889df127ef87aba2590d505d79e6646f Mon Sep 17 00:00:00 2001 From: mjkwiatkowski Date: Mon, 15 Jun 2026 23:48:44 +0200 Subject: feat: migrated the past project to the sunfish repo --- shell_scripts/systemd/grafana.sh | 5 +++++ shell_scripts/systemd/postgres.sh | 4 ++++ 2 files changed, 9 insertions(+) create mode 100755 shell_scripts/systemd/grafana.sh create mode 100755 shell_scripts/systemd/postgres.sh (limited to 'shell_scripts') diff --git a/shell_scripts/systemd/grafana.sh b/shell_scripts/systemd/grafana.sh new file mode 100755 index 00000000..733599b9 --- /dev/null +++ b/shell_scripts/systemd/grafana.sh @@ -0,0 +1,5 @@ +#!/bin/bash +# Runs on http://localhost:3000, default username is admin, current password is localhost123 +doas systemctl enable grafana.service +doas systemctl start grafana.service +systemctl status grafana.service diff --git a/shell_scripts/systemd/postgres.sh b/shell_scripts/systemd/postgres.sh new file mode 100755 index 00000000..f216da70 --- /dev/null +++ b/shell_scripts/systemd/postgres.sh @@ -0,0 +1,4 @@ +#!/bin/bash +doas systemctl enable postgresql.service +doas systemctl start postgresql.service +doas systemctl status postgresql -- cgit v1.2.3