This CleverStack Module provides easy to use, easy to configure, reliable and scalable Authentication System that allows you to (within minutes) have authentication via Google, Facebook, Github, LinkedIn, and many more...
clever-orm
and the clever-odm
modules.grunt prompt:cleverAuthConfig
.clever install clever-auth
.clever-auth
with new Authentication Providers that are not implemented yet.clever-users
module - OR - with any other module that exports the UserController
, UserService
and UserModel
resources/classes.UserController
, UserService
and UserModel
resources/classes.clever install clever-auth
and follow the promptsclever serve
to start your application.modules/clever-auth
)grunt prompt:cleverAuthConfig
and fill in your configuration options.grunt db
to rebase and seed the data.grunt server
to start your application.For more information about how modules (including clever-auth) are configured, please see the cleverstack.io Documentation sections, Backend Configuration and Module Configuration for more information.
grunt prompt:cleverAuthConfig
can be used to generate your config for any environment you want.store
- Session Store Driverin-memory
- Using the In-Memory Session Store.{
"clever-auth": {
"store" : "in-memory"
}
}
redis
- Using Redis to Store Sessions. (implemented using connect-redis
){
"clever-auth": {
"store" : "redis",
"redis": {
"key" : "",
"port" : "6379",
"host" : "localhost",
"prefix" : ""
}
}
}
memcache
- Using Memcache to Store Sessions. (implemented using connect-memcached
){
"clever-auth": {
"store" : "memcache",
"memcache": {
"host" : "localhost",
"port" : "11211",
"prefix" : ""
}
}
}
secretKey
- extra salt to be used to help secure any cookies.{
"clever-auth": {
"secretKey": "",
}
}
See cleverstack.io for more detailed information on the Node Seed or visit the Getting Started Guide if you have never used CleverStack before.
See our LICENSE