Showing
1 changed file
with
8 additions
and
8 deletions
... | @@ -54,23 +54,23 @@ https://www.caferecommend.tk:3000 | ... | @@ -54,23 +54,23 @@ https://www.caferecommend.tk:3000 |
54 | 2. 카카오 Developer 가입 후 애플리케이션 추가 후 Javascript API키 발급 (https://developers.kakao.com/) | 54 | 2. 카카오 Developer 가입 후 애플리케이션 추가 후 Javascript API키 발급 (https://developers.kakao.com/) |
55 | 3. sql폴더에 정의된 테이블 생성문 MySQL에서 실행 | 55 | 3. sql폴더에 정의된 테이블 생성문 MySQL에서 실행 |
56 | 4. KHU-HUB repo clone | 56 | 4. KHU-HUB repo clone |
57 | - ```HTML | 57 | + ``` |
58 | git clone http://khuhub.khu.ac.kr/2015104153/CafeRecommend | 58 | git clone http://khuhub.khu.ac.kr/2015104153/CafeRecommend |
59 | ``` | 59 | ``` |
60 | 5. 디렉토리 이동 후 npm 패키지 설치 | 60 | 5. 디렉토리 이동 후 npm 패키지 설치 |
61 | - ```HTML | 61 | + ``` |
62 | npm install | 62 | npm install |
63 | ``` | 63 | ``` |
64 | 6. 발급받은 구글 로그인 ClientID를 `index.js` 지도 API키를 `map.ejs`에 각각 넣기 | 64 | 6. 발급받은 구글 로그인 ClientID를 `index.js` 지도 API키를 `map.ejs`에 각각 넣기 |
65 | - ```HTML | 65 | + ``` |
66 | var CLIENT_ID = "발급받은 ClientID" | 66 | var CLIENT_ID = "발급받은 ClientID" |
67 | ``` | 67 | ``` |
68 | 68 | ||
69 | - ```HTML | 69 | + ``` |
70 | <script type="text/javascript" src="//dapi.kakao.com/v2/maps/sdk.js?appkey=발급받은API키&libraries=services"></script> | 70 | <script type="text/javascript" src="//dapi.kakao.com/v2/maps/sdk.js?appkey=발급받은API키&libraries=services"></script> |
71 | ``` | 71 | ``` |
72 | 7. Session File Store 설정 (index.js) | 72 | 7. Session File Store 설정 (index.js) |
73 | - ```HTML | 73 | + ``` |
74 | session({ | 74 | session({ |
75 | secret: "원하는 암호", | 75 | secret: "원하는 암호", |
76 | resave: false, | 76 | resave: false, |
... | @@ -79,7 +79,7 @@ https://www.caferecommend.tk:3000 | ... | @@ -79,7 +79,7 @@ https://www.caferecommend.tk:3000 |
79 | }) | 79 | }) |
80 | ``` | 80 | ``` |
81 | 8. MySQL connection 연결 설정 (index.js) | 81 | 8. MySQL connection 연결 설정 (index.js) |
82 | - ```HTML | 82 | + ``` |
83 | var connection = mysql.createConnection({ | 83 | var connection = mysql.createConnection({ |
84 | host: "IP주소 입력 (localhost 또는 AWS 서버 주소)", | 84 | host: "IP주소 입력 (localhost 또는 AWS 서버 주소)", |
85 | user: "계정 입력", | 85 | user: "계정 입력", |
... | @@ -88,11 +88,11 @@ https://www.caferecommend.tk:3000 | ... | @@ -88,11 +88,11 @@ https://www.caferecommend.tk:3000 |
88 | }); | 88 | }); |
89 | ``` | 89 | ``` |
90 | 9. Freenom을 통해 발급받은 도메인을 /bin/www에 넣기 | 90 | 9. Freenom을 통해 발급받은 도메인을 /bin/www에 넣기 |
91 | - ```HTML | 91 | + ``` |
92 | const domain = "도메인 입력"; | 92 | const domain = "도메인 입력"; |
93 | ``` | 93 | ``` |
94 | 10. 프로그램 실행 | 94 | 10. 프로그램 실행 |
95 | - ```HTML | 95 | + ``` |
96 | npm run start | 96 | npm run start |
97 | ``` | 97 | ``` |
98 | 98 | ... | ... |
-
Please register or login to post a comment