We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e247fd6 commit 9d5a08fCopy full SHA for 9d5a08f
README.md
@@ -0,0 +1,20 @@
1
+# Java Spring Boot MongoDB
2
+## 🔧 Tech Stack
3
+- Spring Boot
4
+- MongoRepository
5
+- MongoTemplate
6
+- ModelMapper
7
+- Pagination
8
+- Mail Sending
9
+- Validation
10
+- GlobalExceptionHandler
11
+## ⚡ HOW TO RUN
12
+- First step is clone the project with :
13
+``` git clone https://github.com/MET-DEV/Java-Spring-Boot-MongoDB-Example.git ```
14
+- Second step is up your mongo image with :
15
+``` docker run -d -p 27017:17017 --name app_db mongo ```
16
+- Third step is up the project with:
17
+```docker run -p 8080:8080 --name myapp --link app_db:mongo -d myapp:1.0```
18
+## :white_check_mark: And check project running state from swagger
19
+- Swagger Url : ``` http://localhost:8080/swagger-ui/index.html# ```
20
+
0 commit comments