6 lines
73 B
Bash
Executable file
6 lines
73 B
Bash
Executable file
#!/bin/bash
|
|
source ./env
|
|
cd front
|
|
npm run build
|
|
cd ../back
|
|
npm run build
|