From 8bcf1afaf557bf13dbd72d244634f61cf82dcddb Mon Sep 17 00:00:00 2001 From: Evrard Van Espen Date: Thu, 30 Oct 2025 10:02:02 +0000 Subject: [PATCH] feat: add build scripts for development and production --- build-dev.sh | 3 +++ build.sh | 3 +++ 2 files changed, 6 insertions(+) create mode 100755 build-dev.sh create mode 100755 build.sh diff --git a/build-dev.sh b/build-dev.sh new file mode 100755 index 0000000..e120402 --- /dev/null +++ b/build-dev.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +watchexec --restart -w ./ --no-process-group -- go run . diff --git a/build.sh b/build.sh new file mode 100755 index 0000000..a1be35d --- /dev/null +++ b/build.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +go run .