Skip to content

Commit

Permalink
Update npm run start:api command to point to new WSGI path
Browse files Browse the repository at this point in the history
  • Loading branch information
campb303 committed Jul 12, 2021
1 parent 888e1bb commit 38736e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "webqueue2",
"homepage": "",
"proxy": "http://localhost:5000/",
"proxy": "http://localhost:8000/",
"version": "0.9.1",
"private": true,
"dependencies": {
Expand All @@ -23,7 +23,7 @@
},
"scripts": {
"start:frontend": "react-scripts start",
"start:api": "cd api/ && venv/bin/gunicorn -b 127.0.0.1:5000 --log-level debug api:app",
"start:api": "cd api/ && venv/bin/gunicorn -b 127.0.0.1:8000 --log-level debug webqueue2api.api:app",
"start:docs": "start-storybook -p 6006 -s public -c storybook-config --no-manager-cache",
"build:frontend": "react-scripts build",
"build:docs": "build-storybook -s public -c storybook-config -o build-docs",
Expand Down

0 comments on commit 38736e6

Please sign in to comment.