Bug
The quickstart docs show:
runqy login -s http://localhost:3000 -k dev-api-key
But -s is not a valid shorthand for --server in the login command. Running it returns:
unknown shorthand flag: 's' in -s
Fix
Replace -s with --server in the docs:
runqy login --server http://localhost:3000 --api-key dev-api-key