s-ui/build.sh
2024-02-13 01:17:54 +01:00

13 lines
No EOL
150 B
Bash
Executable file

#!/bin/sh
cd frontend
npm run build
cd ..
cd backend
echo "Backend"
rm -fr web/html/*
cp -R ../frontend/dist/ web/html/
go build -o ../sui main.go