Skip to content
New issue

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

Enable CORS #24

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
task: Enable CORS for client-side communication
  • Loading branch information
reginafcompton committed Oct 25, 2019
commit e75af3f95a09657c8650f20abfab424a56c4014a
5 changes: 3 additions & 2 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,15 @@ pycodestyle = "*"
"autopep8" = "*"
flask = "*"
flask-restful = "*"
gunicorn = {extras = ["gevent"], version = "*"}
gunicorn = {extras = ["gevent"],version = "*"}
flask-sqlalchemy = "*"
flask-migrate = "*"
"psycopg2-binary" = "*"
brighthive-authlib = "*"
requests = "*"
gevent = "*"
mci-database = {editable = true, ref = "master", git = "https://github.com/brighthive/mci-database.git"}
mci-database = {editable = true,ref = "master",git = "https://github.com/brighthive/mci-database.git"}
flask-cors = "*"

[dev-packages]
expects = "*"
Expand Down
Loading