https://github.com/pradeepsingroul/rock-scissors-paper
This is the game of Rock , Scissor and paper where two player exist one is computer and second is user user can pass the Rock/scissor/paper and computer automatically generate your value and then project compares both values and return the winner result based on the game rules.
https://github.com/pradeepsingroul/rock-scissors-paper
java mvc mysql-database postman spring spring-boot
Last synced: 2 months ago
JSON representation
This is the game of Rock , Scissor and paper where two player exist one is computer and second is user user can pass the Rock/scissor/paper and computer automatically generate your value and then project compares both values and return the winner result based on the game rules.
- Host: GitHub
- URL: https://github.com/pradeepsingroul/rock-scissors-paper
- Owner: pradeepsingroul
- Created: 2023-05-19T06:13:34.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-19T11:25:00.000Z (about 3 years ago)
- Last Synced: 2024-12-26T16:32:05.623Z (over 1 year ago)
- Topics: java, mvc, mysql-database, postman, spring, spring-boot
- Language: Java
- Homepage:
- Size: 81.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rock-Scissors-paper
This is the game of Rock , Scissor and paper where two player exist one is computer and second is user user can pass the Rock/scissor/paper and computer automatically generate your value and then project compares both values and return the winner result based on the game rules.

## ER Diagram

## Features
- User can register your self and login and then he/she can play the game
## Rest Api
```register
PostMethod-
http://localhost:8080/users
```
```login
GetMethod-
http://localhost:8080/users/login
```
```Play game
GetMethod-
http://localhost:8888/users?RcokPapperScissor={your sign}
```
## Tech Stack
- Core Java
- Spring Boot
- Spring Security
- MySQL (RDBMS)
- Sql
- Maven
- Swagger UI
- postman
- Giuhub
## Deployment
To deploy this project on localhost paste this below code in application.properties file in the
resources and update according to your database name, username and password of your MySQL database.
```properties
#changing the server port
server.port=8080
#db specific properties
spring.datasource.url=jdbc:mysql://localhost:3306/database
spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver
spring.datasource.username=username
spring.datasource.password=password
#ORM s/w specific properties
spring.jpa.hibernate.ddl-auto=update
spring.jpa.show-sql=true
spring.mvc.throw-exception-if-no-handler-found=true
spring.web.resources.add-mappings=false
spring.mvc.pathmatch.matching-strategy = ANT_PATH_MATCHER
```
### Swagger UI - Link
Use this link to run it on browser.
```swagger
http://localhost:8080/swagger-ui
```
## Authors
- [Pradeep Singroul (@pradeepsingroul) ](https://github.com/pradeepsingroul)