7 lines
102 B
Bash
7 lines
102 B
Bash
|
|
#!/bin/sh
|
||
|
|
# Start the background monitor
|
||
|
|
node monitor.js &
|
||
|
|
|
||
|
|
# Start the Next.js server
|
||
|
|
node server.js
|