7 lines
110 B
Bash
7 lines
110 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# Start the Node.js gateway application
|
|
echo "Starting gateway..."
|
|
exec node dist/main.js
|