We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28ca0e3 commit 65537eaCopy full SHA for 65537ea
.circleci/setupAndTestWithFrontendWithDrfSync.sh
@@ -50,9 +50,9 @@ cd supertokens-website
50
git checkout $2
51
cd ../project/tests/frontendIntegration/drf_sync
52
export PYTHONPATH="${PYTHONPATH}:/root/project"
53
-python manage.py runserver 8080 &
+gunicorn mysite.wsgi --bind 0.0.0.0:8080 &
54
pid=$!
55
-python manage.py runserver 8082 &
+gunicorn mysite.wsgi --bind 0.0.0.0:8082 &
56
pid2=$!
57
cd ../../../../supertokens-website/test/server
58
npm i git+https://github.com:supertokens/supertokens-node.git#$3
setup.py
@@ -53,6 +53,7 @@
"django>=4",
"django-stubs==1.9.0",
"djangorestframework",
+ "gunicorn==20.1.0",
"uvicorn==0.18.2",
"python-dotenv==0.19.2",
59
]
0 commit comments