We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I didn't notice this before but Flask's CORS defaults, i.e.:
playground/backend/app.py
Line 13 in 8126026
allow requests from any origins.
We should restrict the origins to http://localhost (development) and https://play.fortran-lang.org (production).
http://localhost
https://play.fortran-lang.org
@ashirrwad do you think you can tackle this? I'm not as familiar with Flask.
The text was updated successfully, but these errors were encountered:
Yes, of course. Allowing cors for all sources helped make development simpler. I'll add rules for specific origins.
Sorry, something went wrong.
execute_command_line
No branches or pull requests
I didn't notice this before but Flask's CORS defaults, i.e.:
playground/backend/app.py
Line 13 in 8126026
allow requests from any origins.
We should restrict the origins to
http://localhost
(development) andhttps://play.fortran-lang.org
(production).@ashirrwad do you think you can tackle this? I'm not as familiar with Flask.
The text was updated successfully, but these errors were encountered: