Upload files to "/"

Signed-off-by: nestict <developer@nestict.com>
This commit is contained in:
2026-01-16 12:43:47 +01:00
parent 97c98e423b
commit eca904f74c
16 changed files with 17367 additions and 229 deletions

8
entrypoint.sh Normal file
View File

@@ -0,0 +1,8 @@
#!/bin/bash
echo "Waiting for database to be ready..."
python3 manage.py makemigrations
python3 manage.py migrate
python3 manage.py collectstatic --noinput
python3 manage.py createhorillauser --first_name admin --last_name admin --username admin --password admin --email admin@example.com --phone 1234567890
gunicorn --bind 0.0.0.0:8000 horilla.wsgi:application