Procházet zdrojové kódy

Adding a sample systemd unit file, not the recommended way to run this though

Joe Ceresini před 7 roky
rodič
revize
c9581fd03f
1 změnil soubory, kde provedl 13 přidání a 0 odebrání
  1. 13 0
      python/systemd_pytestapp.service

+ 13 - 0
python/systemd_pytestapp.service

@@ -0,0 +1,13 @@
+[Unit]
+Description=pytestapp
+After=network.target
+
+[Service]
+User=[runuser]
+Group=[rungroup]
+ExecStart=/bin/bash -c "source [path/to/virtualenv]/bin/activate ; export FLASK_APP=pytestapp ; flask run --host=0.0.0.0"
+Restart=always
+
+[Install]
+WantedBy=multi-user.target
+