You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
git clone https://github.com/nhAnik/spring-auth.git
cd spring-auth
Install and setup postgres. You can use any other relational database. In that case, change spring.datasource.url in application.yml file.
Create a database.
CREATE DATABASE auth;
Change spring.datasource.username and spring.datasource.password in application.yml file.
For email verification after registration, we need to send email. To test this functionality,
create an account in https://mailtrap.io. You can use any other service as you wish.
Change spring.mail.username and spring.mail.password according to your newly created account.
Now, you are all set to run the app.
About
Authentication and authorization implementation for a spring boot application