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