django-helpdesk/standalone/setup.sh

9 lines
257 B
Bash
Executable File

#!/bin/sh
# if docker.env does not exist create it from the template
if [ ! -f docker.env ]; then
cp docker.env.template docker.env
echo "DJANGO_HELPDESK_SECRET_KEY="$(mcookie) >> docker.env
echo "POSTGRES_PASSWORD="$(mcookie) >> docker.env
fi