DEPRECATED AS OF 2016-09-19
The module demonstrates how to use LoopBack to:
-
Integrate with an existing WordPress user datatbase to provide user and access token management.
-
Develop an AngularJS based admin console UI to manage user registrations, subscriptions and access tokens.
Open datasources.json and update the 'db' and 'mysql' properties:
{
"db": {
"defaultForType": "db",
"connector": "mongodb"
},
...
"mysql": {
"connector": "mysql",
"host": "localhost",
"port": 3306,
"database": "wordpress",
"username": "your-user",
"password": "your-password"
}
}