#!/usr/bin/env python3

from os import system
import sys

sys.path.append(".")

from lifeguard.settings import LIFEGUARD_SERVER_PORT

system("gunicorn --bind 0.0.0.0:{} lifeguard.wsgi".format(LIFEGUARD_SERVER_PORT))

