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