Spaces:
Sleeping
Sleeping
File size: 182 Bytes
c742717 |
1 2 3 4 5 6 7 8 9 10 11 12 |
cd ./service
nohup pnpm start > service.log &
echo "Start service complete!"
cd ..
echo "" > front.log
nohup pnpm dev > front.log &
echo "Start front complete!"
tail -f front.log
|