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
- Host: GitHub
- URL: https://github.com/its-alex/ms-auth
- Owner: Its-Alex
- License: mit
- Created: 2017-10-06T11:20:53.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-09-11T09:50:07.000Z (almost 8 years ago)
- Last Synced: 2025-10-30T17:48:21.922Z (8 months ago)
- Topics: authentication, nodejs, passport, sql
- Language: JavaScript
- Size: 67.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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": ""
}
}
}
```