aboutsummaryrefslogtreecommitdiffhomepage
path: root/justfile
diff options
context:
space:
mode:
Diffstat (limited to 'justfile')
-rw-r--r--justfile17
1 files changed, 17 insertions, 0 deletions
diff --git a/justfile b/justfile
new file mode 100644
index 0000000..8b562e3
--- /dev/null
+++ b/justfile
@@ -0,0 +1,17 @@
+serve: build
+ FEEDAKA_BASE_PATH="" FEEDAKA_PORT=8080 ./backend/feedaka
+
+build:
+ cd frontend && npm run build
+ cd backend && just build
+
+fmt:
+ cd frontend && npm run fix
+ cd backend && just fmt
+
+check:
+ cd frontend && npm run check
+ cd backend && just check
+
+docker-build: fmt
+ docker build -t feedaka .