Skip to content

Commit

Permalink
Merge pull request #19 from Geode-solutions/fix/host
Browse files Browse the repository at this point in the history
Fix/host
  • Loading branch information
JulienChampagnol authored Oct 22, 2024
2 parents cbea8b8 + 41bb4e3 commit dc17d1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/geodeapp_back/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ def run_server():
app.config.update(DESKTOP_APP=args.desktop)
flask_cors.CORS(app, origins=args.allowed_origin)
print(f"Host: {args.host}, Port: {args.port}, Debug: {args.debug}, Data folder path: {args.data_folder_path}, Desktop mode: {args.desktop}, Origins: {args.allowed_origin}", flush=True)
app.run(debug=args.debug, host="0.0.0.0", port=args.port, ssl_context=SSL)
app.run(debug=args.debug, host=args.host, port=args.port, ssl_context=SSL)


# ''' Main '''
Expand Down

0 comments on commit dc17d1a

Please sign in to comment.