mirror of
https://github.com/newnius/Dockerfiles.git
synced 2025-06-06 08:11:54 +00:00
12 lines
242 B
Bash
Executable File
12 lines
242 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# configure zipcall
|
|
if ! [[ -z "${TWILIO_ACCOUNT_SID}" ]]; then
|
|
echo "TWILIO_ACCOUNT_SID=${TWILIO_ACCOUNT_SID} >> .env
|
|
fi
|
|
if ! [[ -z "${LOCAL_AUTH_TOKEN}" ]]; then
|
|
echo "LOCAL_AUTH_TOKEN=${LOCAL_AUTH_TOKEN} >> .env
|
|
fi
|
|
|
|
npm start
|