mirror of
https://github.com/pinry/pinry.git
synced 2025-11-13 08:35:41 +01:00
6 lines
185 B
Bash
Executable File
6 lines
185 B
Bash
Executable File
#!/bin/bash
|
|
gunicorn pinry.wsgi -b 0.0.0.0:8000 -w 4 \
|
|
--capture-output --timeout 30 \
|
|
--user www-data --group www-data \
|
|
--env DJANGO_SETTINGS_MODULE=pinry.settings.docker
|