manuels-scolaires/healthcheck.py

16 lines
230 B
Python
Raw Permalink Normal View History

2018-06-19 23:52:48 +02:00
import os
import sys
import requests
def main():
2021-07-10 12:11:58 +02:00
port = os.getenv("PORT", 8000)
res = requests.get(f"http://127.0.0.1:{port}/")
2018-06-19 23:52:48 +02:00
if res.status_code >= 400:
sys.exit(1)
2021-07-10 12:11:58 +02:00
if __name__ == "__main__":
2018-06-19 23:52:48 +02:00
main()