- Switch to node 14
nvm use 14
- NPM install
yarn install
# Add key/value `anonymous: anon` in all `plugins -> config` in `kong.yml`
cp docker/.env.example docker/.env
# Run this if you want to recreate all services
SUPABASE_PUBLIC_URL=http://localhost:8000 ENABLE_EMAIL_AUTOCONFIRM=true ENABLE_EMAIL_SIGNUP=true npm run docker:dev
# For next time, if you don't want to recreate all services, let's click `Start` button in Docker Manager UI
After start docker services, we can create local credentials for development, in sample the credentials are email [email protected]
and password secret
curl --request POST \
--url http://localhost:8000/auth/v1/signup \
--header 'Accept: application/json' \
--data '{ "email": "[email protected]", "password": "secret" }'
SUPABASE_PUBLIC_URL=http://localhost:8000 npm run dev:studio
Now you can use registered credentials above to login