mirror of
https://github.com/status-im/infra-utils.git
synced 2025-02-24 01:48:14 +00:00
7 lines
168 B
Bash
7 lines
168 B
Bash
|
#!/usr/bin/env sh
|
||
|
gunicorn \
|
||
|
--bind=0.0.0.0:${CONAN_PORT} \
|
||
|
--workers=${CONAN_WORKERS} \
|
||
|
--timeout=${CONAN_TIMEOUT} \
|
||
|
conans.server.server_launcher:app
|