mirror of
https://github.com/NotAShelf/catApi.git
synced 2024-11-22 15:40:42 +00:00
7 lines
163 B
Bash
Executable file
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 |