11 lines
193 B
Bash
11 lines
193 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ $1 == "--gentpl" ]; then
|
||
|
grep "[A-Z_ ]*=" .env -o > env-template.txt
|
||
|
exit 0
|
||
|
fi
|
||
|
|
||
|
# Installs prerequisites for some of the system scripts
|
||
|
|
||
|
python -m pip install python-dotenv
|