I spun up Okuna locally for evaluation (using python okuna-cli.py up-full). Logging in with the pre-populated users fails with credentials being rejected as incorrect. When I generated a new invitation token using python manage.py create_invite, the frontend (okuna-web) receives a bad request from okuna-api for the invitation token being incorrect.
Problem solved for me, I found a few hardcoded URLs in nuxt.config.js that I had to set to use my local okuna-api instance running on localhost:80 and the local okuna-web instance on localhost:3000.
I spun up Okuna locally for evaluation (using
python okuna-cli.py up-full
). Logging in with the pre-populated users fails with credentials being rejected as incorrect. When I generated a new invitation token usingpython manage.py create_invite
, the frontend (okuna-web) receives a bad request from okuna-api for the invitation token being incorrect.