friends-best/justfile
Louis Hollingworth dd67fc967a
Refactored project ready for server.
Signed-off-by: Louis Hollingworth <louis@hollingworth.nl>
2024-02-14 17:39:30 +00:00

13 lines
221 B
Makefile

build-fe:
cd ./fe && pnpm build && cd ..
build-server:
go build ./server
build-all:
cd ./fe && pnpm build && cp -r ./dist .. && cd ..
go build ./server
git:
git add -A && git commit -sS && git push