chore: add server startup script

This commit is contained in:
2024-07-23 17:45:00 +01:00
parent f4c67dc4c3
commit d3861deeaa

2
start-server.sh Normal file
View File

@@ -0,0 +1,2 @@
#!/bin/sh
uvicorn server:app --host 0.0.0.0 --port 443 --ssl-keyfile private.key.pem --ssl-certfile domain.cert.pem > server.log 2> server.err < /dev/null