mirror of
https://github.com/penpot/penpot-admin.git
synced 2025-02-13 18:49:02 -05:00
6 lines
165 B
Bash
Executable file
6 lines
165 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -ex
|
|
python manage.py migrate
|
|
# exec python manage.py runserver 0.0.0.0:6065 --nostatic
|
|
exec gunicorn -w 3 -b 0.0.0.0:6065 penpot_admin.wsgi
|