Refactored project ready for server.
Signed-off-by: Louis Hollingworth <louis@hollingworth.nl>
This commit is contained in:
parent
5a115374b4
commit
dd67fc967a
36 changed files with 1187 additions and 1003 deletions
12
justfile
Normal file
12
justfile
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
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
|
||||
Loading…
Add table
Add a link
Reference in a new issue