catApi/docker.sh
2022-01-24 18:42:51 +03:00

7 lines
163 B
Bash
Executable file

#!/bin/bash
if [ -f .env ]; then
# Load Environment Variables
export $(cat .env | grep -v '#' | awk '/=/ {print $1}')
echo $PORT && echo $CUSTOMURL
fi