mirror of
https://github.com/alireza0/s-ui.git
synced 2026-09-01 09:22:13 +00:00
13 lines
No EOL
150 B
Bash
Executable file
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 |