Skip to content

Commit

Permalink
Merge pull request #51 from FinalDoubleTen/FE-27--feat/Search/API
Browse files Browse the repository at this point in the history
여행지 검색 기능 구현
  • Loading branch information
joanShim authored Jan 4, 2024
2 parents 1505b2e + f894de1 commit 860b70e
Show file tree
Hide file tree
Showing 75 changed files with 2,842 additions and 1,376 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/preview.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: GitHub Actions Vercel Preview Deployment
env:
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }}
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }}
on:
pull_request:
types:
- opened
jobs:
Deploy-Preview:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Vercel CLI
run: npm install --global vercel@canary
- name: Install pnpm
run: npm install -g pnpm
- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts
run: vercel build --token=${{ secrets.VERCEL_TOKEN }}
- name: Deploy Project Artifacts to Vercel
run: vercel deploy --prebuilt --token=${{ secrets.VERCEL_TOKEN }}
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
## 📝 프로젝트 소개

여정공유 여행플랫폼

## 📖 Commit convention

- Feat : 새로운 기능 추가
- Fix : 버그 수정
- Env : 개발 환경 관련 설정
Expand All @@ -12,5 +14,5 @@
- Docs : 내부 문서 추가/수정
- Test : 테스트 추가/수정
- Chore : 빌드 관련 코드 수정
- Rename : 파일 및 폴더명 수정
- Remove : 파일 삭제
- Rename : 파일 및 폴더명 수정.
- Remove : 파일 삭제.
27 changes: 14 additions & 13 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.jpeg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TenTen</title>
</head>

<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.jpeg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>TenTen</title>
</head>

<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>

</html>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
<script
type="text/javascript"
src="//dapi.kakao.com/v2/maps/sdk.js?appkey=%VITE_KAKAO_API_KEY%"></script>
</html>
Loading

0 comments on commit 860b70e

Please sign in to comment.