9 lines
159 B
Bash
9 lines
159 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
# Start Nginx in the background
|
|
nginx &
|
|
|
|
# Start the Node.js backend
|
|
exec node /app/node_modules/.bin/tsx /app/packages/backend/src/index.ts
|