https://github.com/abdulbasit-dev/springboot-security
Simple Auth Signin and Signup api
https://github.com/abdulbasit-dev/springboot-security
java spring-boot spring-data-jpa spring-security
Last synced: 7 months ago
JSON representation
Simple Auth Signin and Signup api
- Host: GitHub
- URL: https://github.com/abdulbasit-dev/springboot-security
- Owner: abdulbasit-dev
- Created: 2024-01-04T09:11:21.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-04T09:14:30.000Z (about 2 years ago)
- Last Synced: 2025-02-06T01:46:31.306Z (about 1 year ago)
- Topics: java, spring-boot, spring-data-jpa, spring-security
- Language: Java
- Homepage:
- Size: 83 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Spring Security
Simple Signin and Signup Spring boot Security
## Installation
Before launching the application, follow these steps to set up the database:
1. **Install MySQL:** If you haven't installed MySQL yet, you can download it [here](https://dev.mysql.com/downloads/installer/).
2. **Create a Database:** Open your MySQL client and create a new database named `springboot_security`.
3. **Configure Database Connection:** Update the `application.properties` file with your MySQL username and password.
```properties
spring.datasource.url=jdbc:mysql://localhost:3306/springboot_security
spring.datasource.username=your_username
spring.datasource.password=your_password
```