├── .env.example ├── .eslintrc.json ├── .gitignore ├── Dockerfile ├── Readme.md ├── docker-compose.yaml ├── index.js ├── package.json ├── run.sh └── server ├── constant └── appConstant.js ├── controller ├── authController.js └── index.js ├── database └── database.js ├── logger ├── index.js └── log.js ├── routes ├── auth.js └── index.js ├── test └── routes │ └── auth.js └── util ├── helperFunctions.js ├── jwt.js ├── mailer.js ├── password.js └── reponseFormatter.js /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawris/authentication-service/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawris/authentication-service/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawris/authentication-service/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawris/authentication-service/HEAD/Dockerfile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawris/authentication-service/HEAD/Readme.md -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawris/authentication-service/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawris/authentication-service/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawris/authentication-service/HEAD/package.json -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawris/authentication-service/HEAD/run.sh -------------------------------------------------------------------------------- /server/constant/appConstant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawris/authentication-service/HEAD/server/constant/appConstant.js -------------------------------------------------------------------------------- /server/controller/authController.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawris/authentication-service/HEAD/server/controller/authController.js -------------------------------------------------------------------------------- /server/controller/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawris/authentication-service/HEAD/server/controller/index.js -------------------------------------------------------------------------------- /server/database/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawris/authentication-service/HEAD/server/database/database.js -------------------------------------------------------------------------------- /server/logger/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawris/authentication-service/HEAD/server/logger/index.js -------------------------------------------------------------------------------- /server/logger/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawris/authentication-service/HEAD/server/logger/log.js -------------------------------------------------------------------------------- /server/routes/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawris/authentication-service/HEAD/server/routes/auth.js -------------------------------------------------------------------------------- /server/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawris/authentication-service/HEAD/server/routes/index.js -------------------------------------------------------------------------------- /server/test/routes/auth.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /server/util/helperFunctions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawris/authentication-service/HEAD/server/util/helperFunctions.js -------------------------------------------------------------------------------- /server/util/jwt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawris/authentication-service/HEAD/server/util/jwt.js -------------------------------------------------------------------------------- /server/util/mailer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawris/authentication-service/HEAD/server/util/mailer.js -------------------------------------------------------------------------------- /server/util/password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawris/authentication-service/HEAD/server/util/password.js -------------------------------------------------------------------------------- /server/util/reponseFormatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rawris/authentication-service/HEAD/server/util/reponseFormatter.js --------------------------------------------------------------------------------