perak:accounts-auth0

v1.0.0Published 7 years ago

This package has not had recent updates. Please investigate it's current state before committing to using it in your project.

perak:accounts-auth0

A login service for Auth0.

Initially forked from https://github.com/hotello/meteor-accounts-auth0

Configuration

As any official Meteor account package, upsert a configuration object:

1ServiceConfiguration.configurations.upsert({service: 'auth0'}, {
2  $set: {
3    domain: '<AUTH0_DOMAIN>',
4    clientId: '<CLIENT_ID>',
5    secret: '<SECRET>'
6  }
7});