7 lines
93 B
Bash
7 lines
93 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
# Start the application
|
|
echo "Starting the application..."
|
|
exec pnpm start
|