mirror of
https://github.com/penpot/penpot-admin.git
synced 2025-02-20 22:06:16 -05:00
7 lines
165 B
Bash
7 lines
165 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -ex
|
||
|
python manage.py migrate
|
||
|
# exec python manage.py runserver 0.0.0.0:6063 --nostatic
|
||
|
exec gunicorn -w 3 -b 0.0.0.0:6063 penpot_admin.wsgi
|