-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[UPDATE] 사용자가이드 및 APIKEY 숨기기 리드미 업데이트
- Loading branch information
1 parent
f6f3129
commit 1403907
Showing
18 changed files
with
136 additions
and
70 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,23 +1,68 @@ | ||
# OurToDo | ||
|
||
ToDO, Bookmark, Weather Info 등을 제공하는 웹어플리케이션 | ||
### ToDO, Bookmark, Weather Info 등을 제공하는 웹어플리케이션 | ||
|
||
## 기술스택 | ||
<br> | ||
OurToDo는 PC, 크롬을 기준으로 제작되었습니다. | ||
|
||
현재 모바일과 익스플로러는 지원하지 않습니다. | ||
<br> | ||
<br> | ||
|
||
### 개발진 | ||
|
||
- 프론트 : 장효택 | 서버 : 장효택 | 디자인 : 장효택 | 기획 : 장효택 | 후원 : 장효택 | 배포 : 장효택 | ||
|
||
--- | ||
|
||
# 사용자 가이드 | ||
|
||
## 즐겨찾기 추가 및 새 탭 설정법 (크롬기준) | ||
|
||
--- | ||
|
||
### 즐겨찾기 추가 | ||
|
||
1. 주소창 우측에 별표시를 누른다 | ||
|
||
- html, css, js, nodejs, ejs, aws, route53, mysql | ||
### 즐겨찾기 보기 | ||
|
||
- crypto를 통해 로그인 보안처리 | ||
1. 오른쪽 상단에서 : 버튼 클릭 후, 북마크를 클릭한다. | ||
2. 북마크바 표시를 누른다. ( 단축키 : 컨트롤+쉬프트+B ) | ||
|
||
## 기능설명 | ||
--- | ||
|
||
### 새 탭 설정법 | ||
|
||
1. https://fervors.tistory.com/103 링크 참조 | ||
2. 설정 url을 http://ourtodo.site 로 한다. | ||
|
||
--- | ||
|
||
## 로그인 및 회원가입 | ||
|
||
- 회원가입과 로그인을 거쳐 사용한다. | ||
- auto login을 통해 자동로그인 가능. | ||
|
||
--- | ||
|
||
## To-Do-List | ||
|
||
- To-Do-List 추가 : 하단 Write here 에 타이핑 후 엔터키를 통해 리스트 업. | ||
- To-Do-List 삭제 : 리스트 옆 엑스박스 클릭으로 삭제. | ||
|
||
--- | ||
|
||
## Bookmark | ||
|
||
- Bookmark 추가 : To-Do-List와 동일하게 URL과 TITLE 작성 후 엔터. 단, 둘다 작성되어야 리스트 업 가능. | ||
- Bookmark 삭제 : 리스트옆 휴지통 모양을 클릭하여 삭제. | ||
- Bookmark 삭제 : 리스트 옆 휴지통 모양을 클릭하여 삭제. | ||
|
||
--- | ||
|
||
## 기술스택 | ||
|
||
- 프론트 : html css js | ||
- 서버 : nodejs, ejs | ||
- db : mysql | ||
- 배포 : aws, 가비아, route53 |
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
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,7 @@ | ||
class APIKEY { | ||
static getKey() { | ||
return process.env.API_KEY; | ||
} | ||
} | ||
|
||
module.exports = APIKEY; |
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
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
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,8 @@ | ||
const button = document.getElementById("start-button"); | ||
button.addEventListener("click", (e) => { | ||
console.log("123"); | ||
const startButton = document.getElementById("start-button"); | ||
startButton.addEventListener("click", (e) => { | ||
location.href = "/user/login"; | ||
}); | ||
const guitdeButton = document.getElementById("start-guide"); | ||
guitdeButton.addEventListener("click", (e) => { | ||
location.href = "https://github.com/HyoTaek-Jang/Our-To-Do"; | ||
}); |
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
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
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
Oops, something went wrong.