An open API service indexing awesome lists of open source software.

https://github.com/its-alex/ms-auth

Nodejs authentication microservice for mariadb
https://github.com/its-alex/ms-auth

authentication nodejs passport sql

Last synced: 2 months ago
JSON representation

Nodejs authentication microservice for mariadb

Awesome Lists containing this project

README

          

# MS-Auth
Nodejs authentication microservice for mariadb
# Configuration
To configure microservice add this to a config.json file with your own data in the project folder
```json
{
"port": 3000,
"db": {
"host": "",
"database": "",
"username": "",
"password": ""
},
"passport": {
"fortyTwo": {
"id": "",
"secret": ""
},
"github": {
"id": "",
"secret": ""
},
"facebook": {
"id": "",
"secret": ""
}
}
}
```