Toggle navigation
Toggle navigation
This project
Loading...
Sign in
정성훈
/
MEALKHU
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
1
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
swa07016
2020-06-28 01:24:20 +0900
Browse Files
Options
Browse Files
Download
Plain Diff
Commit
bd501d94a828109d4a7bd8d56ab2d5e77ed262b6
bd501d94
2 parents
3c56887c
1bdd59e3
Merge branch 'master' of
ssh://khuhub.khu.ac.kr:12959/2019102227/TermProject
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
97 additions
and
0 deletions
License
README.md
License
0 → 100644
View file @
bd501d9
The MIT License (MIT)
Copyright (c) 2020 정성훈
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
README.md
0 → 100644
View file @
bd501d9
# MEALKHU
MEALKHU는 경희대학생들의 식사고민을 덜어주기 위해 제작된 웹사이트입니다. 경희대 근처 생활권(정건, 마을)에 있는 식당들을 종류별로 카테고리화 했습니다. 랜딩페이지에서 랜덤추천 및 mealkhu맵을 이용할 수 있고, 메뉴페이지에서 메뉴별 식당들을 조회할 수 있습니다. pick기능으로 원하는 식당을 mypick에 담아 둘 수 있습니다.
## site
http://www.mealkhu.tk/
## How to install
1.
clone : 로컬로 저장소를 클론합니다.
```
$ git clone http://khuhub.khu.ac.kr/2019102227/TermProject.git
```
2.
npm install : 루트 디렉토리에서 아래의 명령어로 모듈들을 설치합니다.
```
$ npm install && cd client && npm install
```
## How to use
-
react 서버 실행 방법 : 루트 디렉토리에서 아래의 명령어를 실행합니다.
```
$ npm run client
```
-
node 서버 실행 방법 : 루트 디렉토리에서 아래의 명령어를 실행합니다.
```
$ npm run server
```
-
react, node 서버 동시 실행 방법 : 루트 디렉토리에서 아래의 명령어를 실행합니다.
```
$ npm run dev
```
-
데이터 custom 하기 : 루트 디렉토리에 json_datas.json이름의 파일을 생성하고, 아래의 형식처럼 데이터들을 저장해줍니다.
```
[
{
"id": "1",
"name": "식당이름",
"address": "식당주소",
"latitude": "위도",
"longitude": "경도",
"type": "식당종류", (ex : '한식', '중식', '일식', '고기', '분식', '호프', '술집', '패스트푸드', '카페', '디저트', '기타')
"menu": "메뉴",
"img": "이미지",
"img_source": "이미지출처"
}, ...
]
```
-
각종 key들 설정법
```
// database.json
{
"host":"호스트",
"user":"유저",
"password":"비밀번호",
"port":"포트번호",
"database":"database이름"
}
// jwt_key.json
{
"value": "키"
}
// client/config/appKey.json
{
"value": "카카오API키"
}
```
## Tech Stack
-
React
-
Node.js
-
Mysql
-
Aws EC2
-
Kakao Map Api
## License
MIT LICENSE
\ No newline at end of file
Please
register
or
login
to post a comment