We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5201f4 commit b69b775Copy full SHA for b69b775
app.py
@@ -205,6 +205,6 @@ def download_ics():
205
206
if __name__ == "__main__":
207
# Run the application on the local development server
208
- app.run()
+ app.run(host="0.0.0.0", port=8000)
209
210
# flask --app app.py run
frontend/src/components/url.ts
@@ -1,3 +1,3 @@
1
export const BACKEND_URL = import.meta.env.PROD
2
? "https://gyft-api.metakgp.org"
3
- : "http://127.0.0.1:5000";
+ : "http://127.0.0.1:8000";
wsgi.py
@@ -1,4 +1,4 @@
from app import app
4
0 commit comments