11 lines
156 B
Bash
Executable File
11 lines
156 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# Load environment variables
|
|
if [ -f .env ]; then
|
|
export $(cat .env | grep -v '^#' | xargs)
|
|
fi
|
|
|
|
# Run the server
|
|
node dist/index.js
|