홍지윤

Fix hidden information and Readme

...@@ -27,7 +27,20 @@ ...@@ -27,7 +27,20 @@
27 ## ✏️ Quick Start (build, install, setup manual) 27 ## ✏️ Quick Start (build, install, setup manual)
28 28
29 $ git clone http://khuhub.khu.ac.kr/2017101294/Mapmory.git 29 $ git clone http://khuhub.khu.ac.kr/2017101294/Mapmory.git
30 + $ cd Mapmory
30 $ npm install 31 $ npm install
32 +
33 + Input Mongo key and google map key
34 + <img src = "https://user-images.githubusercontent.com/73929383/120812504-fd8c0180-c587-11eb-9258-e99adec55714.PNG" width="550" height = "110">
35 +
36 + <img src = "https://user-images.githubusercontent.com/73929383/120812932-696e6a00-c588-11eb-8a07-ce2b22ff09c0.PNG" width="550" height = "100">
37 +
38 + Input Port number
39 + <img src= "https://user-images.githubusercontent.com/73929383/120813437-d7b32c80-c588-11eb-9d52-4ef570212d85.PNG" width = "550" height = "120">
40 +
41 +
42 +
43 +
31 $ node index.js 44 $ node index.js
32 45
33 If it does not work well 46 If it does not work well
......
...@@ -69,7 +69,7 @@ app.use('/users', require('./routes/users')) ...@@ -69,7 +69,7 @@ app.use('/users', require('./routes/users'))
69 69
70 70
71 // Server 71 // Server
72 -var port = 3000; 72 +var port = "포트번호 입력";
73 app.listen(port, function(){ 73 app.listen(port, function(){
74 - console.log('server on! http://localhost:' + port); 74 + console.log('server on! http://:::' + port);
75 }); 75 });
......
...@@ -135,7 +135,7 @@ ...@@ -135,7 +135,7 @@
135 135
136 <!-- Async script executes immediately and must be after any DOM elements used in callback. --> 136 <!-- Async script executes immediately and must be after any DOM elements used in callback. -->
137 <script 137 <script
138 - src="https://maps.googleapis.com/maps/api/js?key=googlekey값을 입력하세요&callback=initMap&libraries=&v=weekly" 138 + src="https://maps.googleapis.com/maps/api/js?key=구글키값을 입력하세요&callback=initMap&libraries=&v=weekly"
139 async 139 async
140 ></script> 140 ></script>
141 </body> 141 </body>
......
...@@ -142,7 +142,7 @@ ...@@ -142,7 +142,7 @@
142 142
143 <!-- Async script executes immediately and must be after any DOM elements used in callback. --> 143 <!-- Async script executes immediately and must be after any DOM elements used in callback. -->
144 <script 144 <script
145 - src="https://maps.googleapis.com/maps/api/js?key=googlekey값을 입력하세요&callback=initMap&libraries=&v=weekly" 145 + src="https://maps.googleapis.com/maps/api/js?key=구글키값을 입력하세요&callback=initMap&libraries=&v=weekly"
146 async 146 async
147 ></script> 147 ></script>
148 148
......