6 lines
No EOL
168 B
Bash
6 lines
No EOL
168 B
Bash
#!/bin/bash
|
|
# Starte Backend im Hintergrund
|
|
node /app/dist/backend/server.js &
|
|
|
|
# Starte Frontend
|
|
npx http-server dist/frontend -p 8080 --mime application/javascript=js |