mirror of
https://github.com/NotAShelf/catApi.git
synced 2024-11-22 23:50:41 +00:00
7 lines
163 B
Bash
7 lines
163 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ -f .env ]; then
|
||
|
# Load Environment Variables
|
||
|
export $(cat .env | grep -v '#' | awk '/=/ {print $1}')
|
||
|
echo $PORT && echo $CUSTOMURL
|
||
|
fi
|