mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-22 07:53:19 +01:00
9 lines
257 B
Bash
Executable File
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
|