11 lines
193 B
Bash
Executable File
11 lines
193 B
Bash
Executable File
#!/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
|