-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #78 from OPGG-HACKTHON/develop
Relase 1.0.0
- Loading branch information
Showing
175 changed files
with
8,448 additions
and
158 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
{ | ||
"presets": ["next/babel"] | ||
"presets": ["next/babel"], | ||
"plugins": [ | ||
[ | ||
"styled-components", | ||
{ | ||
"ssr": true, | ||
"displayName": true, | ||
"preprocess": false | ||
} | ||
] | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
"use strict"; | ||
|
||
module.exports = { | ||
extends: ["react-app", "prettier"], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* @HTMLhead @jun094 @Sh031224 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
## Steps 🔍 | ||
|
||
|
||
## Description 📝 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
## What is this PR? 🔍 | ||
|
||
// #issue_name 에 의해 ~~~ 기능 완료 | ||
|
||
## Major Fix 🔌 | ||
|
||
|
||
## Minor Fix 🛠 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: deploy-dev | ||
on: | ||
push: | ||
branches: [develop] | ||
workflow_dispatch: | ||
env: | ||
prod_CLOUDFRONT: ${{ secrets.PROD_CLOUDFRONT }} | ||
dev_CLOUDFRONT: ${{ secrets.DEV_CLOUDFRONT }} | ||
NEXT_PUBLIC_SERVER_URL: ${{ secrets.SERVER_URL }} | ||
jobs: | ||
deploy-dev: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: "14.x" | ||
- name: Install yarn | ||
run: npm install -g yarn | ||
- name: Install Packages | ||
run: yarn | ||
- name: Configure AWS Credentials | ||
uses: aws-actions/configure-aws-credentials@v1 | ||
with: | ||
aws-access-key-id: ${{ secrets.AWS_KEY }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET }} | ||
aws-region: ap-northeast-2 | ||
- name: Deploy Next.js app | ||
run: yarn deploy:dev |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: deploy-prod | ||
on: | ||
push: | ||
branches: [master] | ||
workflow_dispatch: | ||
env: | ||
prod_CLOUDFRONT: ${{ secrets.PROD_CLOUDFRONT }} | ||
dev_CLOUDFRONT: ${{ secrets.DEV_CLOUDFRONT }} | ||
NEXT_PUBLIC_SERVER_URL: ${{ secrets.SERVER_URL }} | ||
jobs: | ||
deploy-prod: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: "14.x" | ||
- name: Install yarn | ||
run: npm install -g yarn | ||
- name: Install Packages | ||
run: yarn | ||
- name: Configure AWS Credentials | ||
uses: aws-actions/configure-aws-credentials@v1 | ||
with: | ||
aws-access-key-id: ${{ secrets.AWS_KEY }} | ||
aws-secret-access-key: ${{ secrets.AWS_SECRET }} | ||
aws-region: ap-northeast-2 | ||
- name: Deploy Next.js app | ||
run: yarn deploy:prod |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: pull-request | ||
on: pull_request_target | ||
jobs: | ||
eslint-prettier: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: "14.x" | ||
- name: Install yarn | ||
run: npm install -g yarn | ||
- name: Install Packages | ||
run: yarn | ||
- name: Run linters | ||
uses: wearerequired/lint-action@v1 | ||
with: | ||
eslint: true | ||
prettier: true | ||
eslint_args: '--max-warnings 0 "**/*.{ts,tsx}"' | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: "14.x" | ||
- name: Install yarn | ||
run: npm install -g yarn | ||
- name: Install Packages | ||
run: yarn | ||
- name: Testing Code | ||
run: yarn test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
module.exports = { | ||
setupFilesAfterEnv: ["./jest.setup.js"], | ||
testEnvironment: "jsdom", | ||
moduleDirectories: ["src", "node_modules"], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
module.exports = { | ||
i18n: { | ||
locales: ["en", "ko"], | ||
defaultLocale: "ko", | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
const { i18n } = require("./next-i18next.config"); | ||
|
||
module.exports = { | ||
target: "serverless", | ||
images: { | ||
domains: ["cdn.akamai.steamstatic.com"], | ||
}, | ||
i18n, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<browserconfig> | ||
<msapplication> | ||
<tile> | ||
<square150x150logo src="/icons/mstile-150x150.png"/> | ||
<TileColor>#ffffff</TileColor> | ||
</tile> | ||
</msapplication> | ||
</browserconfig> |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"about_info_no_name": "No name", | ||
"about_info_game_genre": "Game genre", | ||
"about_info_game_date": "Release date", | ||
"about_info_game_introduction": "Game introduction", | ||
"about_info_button_goGame": "Go game", | ||
"about_info_button_share": "Share", | ||
"about_preview_title": "Preview", | ||
"about_video_title": "Video", | ||
"about_video_not_exist": "Video not exist yet.", | ||
"about_similar_title": "Similar Tags Indie Chip", | ||
"about_review_title": "Review", | ||
"about_review_not_exist": "Reviews not exist yet." | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"common_meta_title": "Jampick, Contact with various indie games", | ||
"common_meta_description": "For gamers who do not know which indie game to play, we provide contact points with more indie games so that they can enjoy their game life more.", | ||
"common_page_meta_title": "{{title}} | Jampick", | ||
"common_footer_meta": "MetaData Source", | ||
"common_footer_term": "Terms of Use", | ||
"common_footer_privacy": "Privacy Policy" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"error_desc_404": "You entered an address that does not exist,\n or The address of the requested page has been changed or deleted and cannot be found.", | ||
"error_desc_500": "The page could not be displayed due to a temporary server error.\nPlease try again in a few minutes.", | ||
"error_button": "Home" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"main_roulette_title": "Choose indie chip keywords!", | ||
"main_roulette_subtitle": "Click on keywords to get a random recommended game!", | ||
"main_roulette_bubble_title": "Random Game Recommender Guide", | ||
"main_roulette_bubble_content": "Jampick's indie chip means an indie game.\n\nSelect up to 6 keywords at the bottom\n and get a random game recommendation.", | ||
"main_roulette_game_info": "View game details", | ||
"main_roulette_keyword_indie": "Indie", | ||
"main_roulette_keyword_action": "Action", | ||
"main_roulette_keyword_casual": "Casual", | ||
"main_roulette_keyword_adventure": "Adventure", | ||
"main_roulette_keyword_strategy": "Strategy", | ||
"main_roulette_keyword_simulation": "Simulation", | ||
"main_roulette_keyword_rpg": "RPG", | ||
"main_roulette_keyword_early_access": "Early Access", | ||
"main_roulette_keyword_free_to_play": "Free to Play", | ||
"main_roulette_keyword_sports": "Sports", | ||
"main_roulette_keyword_racing": "Racing", | ||
"main_roulette_keyword_massively_multiplayer": "Massively Multiplayer", | ||
"main_roulette_keyword_gore": "Gore", | ||
"main_roulette_keyword_audio_production": "Audio Production", | ||
"main_roulette_keyword_video_production": "Video Production", | ||
"main_roulette_keyword_animation_n_modeling": "Animation & Modeling", | ||
"main_carousel_title": "How about this indiechip?", | ||
"main_carousel_card_tag_free": "Free", | ||
"main_indi_pick_title": "Indie Chip Pick", | ||
"main_view_ranking_title": "Real Time VIEW Ranking", | ||
"main_carousel_this_month_title": "Indie chips Released of the Month" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"about_info_no_name": "이름 없음", | ||
"about_info_game_genre": "게임 장르", | ||
"about_info_game_date": "출시 날짜", | ||
"about_info_game_introduction": "게임 소개", | ||
"about_info_button_goGame": "게임 하러가기", | ||
"about_info_button_share": "공유하기", | ||
"about_preview_title": "프리뷰", | ||
"about_video_title": "영상", | ||
"about_video_not_exist": "영상이 아직 없습니다.", | ||
"about_similar_title": "비슷한 태그 인디칩", | ||
"about_review_title": "리뷰", | ||
"about_review_not_exist": "리뷰가 아직 없습니다." | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
"common_meta_title": "다양한 인디게임과의 접점, Jampick", | ||
"common_meta_description": "어떤 인디게임을 할지 모르겠는 게이머들을 위해 그들의 게임 라이프를 보다 즐겁게 영위할 수 있도록 더 다양한 인디게임과의 접점을 제공합니다.", | ||
"common_page_meta_title": "{{title}} | Jampick", | ||
"common_footer_meta": "메타데이터 소스", | ||
"common_footer_term": "이용 약관", | ||
"common_footer_privacy": "개인정보 처리방침" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"error_desc_404": "존재하지 않는 주소를 입력하셨거나,\n요청하신 페이지의 주소가 변경, 삭제되어 찾을 수 없습니다.", | ||
"error_desc_500": "일시적 서버오류로 페이지를 표시할 수 없습니다.\n잠시후 다시 시도해주세요.", | ||
"error_button": "홈으로 돌아가기" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"main_roulette_title": "인디칩 키워드를 골라보세요!", | ||
"main_roulette_subtitle": "키워드를 클릭해서 랜덤으로 추천 게임을 받아보세요!", | ||
"main_roulette_bubble_title": "랜덤 게임 추천기 안내", | ||
"main_roulette_bubble_content": "잼픽의 인디칩은 인디게임을 의미합니다.\n\n하단의 키워드를 최대 6개까지 선택하여 랜덤\n으로 게임을 추천 받아보세요.", | ||
"main_roulette_game_info": "게임 상세보기", | ||
"main_roulette_keyword_indie": "인디", | ||
"main_roulette_keyword_action": "액션", | ||
"main_roulette_keyword_casual": "캐주얼", | ||
"main_roulette_keyword_adventure": "어드벤처", | ||
"main_roulette_keyword_strategy": "전략", | ||
"main_roulette_keyword_simulation": "시뮬레이션", | ||
"main_roulette_keyword_rpg": "RPG", | ||
"main_roulette_keyword_early_access": "앞서 해보기", | ||
"main_roulette_keyword_free_to_play": "무료", | ||
"main_roulette_keyword_sports": "스포츠", | ||
"main_roulette_keyword_racing": "레이싱", | ||
"main_roulette_keyword_massively_multiplayer": "대규모 멀티플레이어", | ||
"main_roulette_keyword_gore": "고어", | ||
"main_roulette_keyword_audio_production": "오디오 제작", | ||
"main_roulette_keyword_video_production": "동영상 제작", | ||
"main_roulette_keyword_animation_n_modeling": "애니메이션과 모델링", | ||
"main_carousel_title": "이런 인디칩 어때요?", | ||
"main_carousel_card_tag_free": "무료", | ||
"main_indi_pick_title": "인디칩 Pick", | ||
"main_view_ranking_title": "실시간 VIEW 랭킹", | ||
"main_carousel_this_month_title": "이달의 출시 인디칩" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"name": "Jampick", | ||
"short_name": "Jampick", | ||
"icons": [ | ||
{ | ||
"src": "/icons/android-chrome-192x192.png", | ||
"sizes": "192x192", | ||
"type": "image/png" | ||
}, | ||
{ | ||
"src": "/icons/android-chrome-512x512.png", | ||
"sizes": "512x512", | ||
"type": "image/png" | ||
} | ||
], | ||
"theme_color": "#ffffff", | ||
"background_color": "#ffffff", | ||
"display": "standalone" | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.