8 lines
148 B
Bash
Executable file
8 lines
148 B
Bash
Executable file
#!/bin/bash
|
|
export NODE_ENV="production"
|
|
|
|
if [[ "$SERVER_BASE_URL" == "" ]]; then
|
|
export SERVER_BASE_URL="http://nextnet-api:3000/"
|
|
fi
|
|
|
|
npm start
|