KartRider
전적 검색과 성향 테스트 결과에 따른 카트 추천
Table of Contents
About The Project
카트라이더는 넥슨에서 서비스 하는 레이싱 비디오 게임이다. 2004년 부터 서비스를 하고 있지만 lol과 다르게 전적 검색 사이트가 많이 존재하지 않는다.
카트라이더의 홍보와 경쟁전(개인전)에서 전적이 궁금한 사람들을 위해 개발한 웹 서비스이다.
이 웹 사이트는 다음과 같은 서비스를 제공하고 있다.
- 닉네임을 통한 전적 검색(개인전, 그랑프리, 개인 무한부스터에 대한 결과 제공)
- 7가지 질문을 통한 카트바디 추천
- 그랑프리 랭킹
- 카이라이더 공지 사항 및 업데이트
Built With
List frameworks/libraries in my project.
Getting Started
This is an example of how you may give instructions on setting up your project locally. To get a local copy up and running follow these simple example steps.
Prerequisites
This is an example of how to list things you need to use the software and how to install them.
- npm
sh npm install npm@latest -g
Installation
- Get a free API Key at https://developers.nexon.com/kart
- Clone the repo
sh git clone http://khuhub.khu.ac.kr/2019110627/kartrider.git
- Install NPM packages
sh npm install
- Enter your API in
search.js
js //require("dotenv").config({path: ".env"}); const key = 'ENTER YOUR API';
Usage
main.js
/* AWS */
const fs = require('fs');
const path = require('path');
const HTTPS = require('https');
const domain = "DOMAIN";
const sslport = "SSLPORT";
try {
const option = {
ca: fs.readFileSync('/etc/letsencrypt/live/' + domain +'/fullchain.pem'),
key: fs.readFileSync(path.resolve(process.cwd(), '/etc/letsencrypt/live/' + domain +'/privkey.pem'), 'utf8').toString(),
cert: fs.readFileSync(path.resolve(process.cwd(), '/etc/letsencrypt/live/' + domain +'/cert.pem'), 'utf8').toString(),
};
HTTPS.createServer(option, app).listen(sslport, () => {
console.log(`[HTTPS] Server is started on port ${sslport}`);
});
} catch (error) {
console.log('[HTTPS] HTTPS 오류가 발생하였습니다. HTTPS 서버는 실행되지 않습니다.');
console.log(error);
}
/* local server
app.listen("8080",function(req,res){
console.log('server listening at port no. 8080');
});
*/
HOME PAGE
TEST PAGE
SEARCH PAGE
Roadmap
- Add back to top links
- Add AWS version
- Add Home page
- Add Additional Templates
- Add "components" document to easily copy & paste sections of the readme
-
Multi-language Support
- Korean
- Chinese
- Spanish
Contributing
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch
- Commit your Changes
- Push to the Branch
- Open a Pull Request
License
METADATA : It's owned by Nexon(Kartrider)
Contact
김명주 - @naver_blog - mjoo1106@naver.com
Project Link: http://khuhub.khu.ac.kr/2019110627/kartrider