Skip to content

Commit 245bb82

Browse files
ggg
1 parent 7fcfd08 commit 245bb82

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

api/main.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
from flask import Flask
22
from flask_cors import CORS
3-
import os
43

54
app = Flask(__name__)
65
CORS(app)
@@ -10,7 +9,4 @@ def home():
109
return "Wgg"
1110

1211
if __name__ == '__main__':
13-
cert_path = '/root/docker/cas/cert.pem'
14-
key_path = '/root/docker/cas/key.pem'
15-
16-
app.run(debug=True, port=3000, ssl_context=(cert_path, key_path))
12+
app.run(debug=True, port=3000)

0 commit comments

Comments
 (0)