13 lines
150 B
Bash
Executable File
13 lines
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 |