Skip to content

Commit

Permalink
edit urls
Browse files Browse the repository at this point in the history
  • Loading branch information
Vica1106 committed Dec 7, 2024
1 parent 14d35d7 commit 0f44cf6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/backend/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,4 +69,4 @@ def general_model():
return jsonify({"error": str(e)}), 500

if __name__ == "__main__":
app.run(port=5000)
app.run(host="0.0.0.0", port=5000, debug=True)
2 changes: 2 additions & 0 deletions src/backend/base_url.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
const BASE_URL = "http://127.0.0.1:5000";
export default BASE_URL;

0 comments on commit 0f44cf6

Please sign in to comment.