fix: ESLint 오류 수정 - 사용하지 않는 변수들에 underscore prefix 추가
- AddTransactionButton.tsx: useEffect import 제거 - BudgetProgressCard.tsx: localBudgetData를 _localBudgetData로 변경 - Header.tsx: isMobile을 _isMobile로 변경 - RecentTransactionsSection.tsx: isDeleting을 _isDeleting로 변경 - TransactionCard.tsx: cn import 제거 - ExpenseForm.tsx: useState import 제거 - cacheStrategies.ts: QueryClient, Transaction import 제거 - Analytics.tsx: Separator import 제거, 미사용 변수들에 underscore prefix 추가 - Index.tsx: useMemo import 제거 - Login.tsx: setLoginError를 _setLoginError로 변경 - Register.tsx: useEffect dependency 수정 및 useCallback 추가 - Settings.tsx: toast, handleClick에 underscore prefix 추가 - authStore.ts: setError, setAppwriteInitialized에 underscore prefix 추가 - budgetStore.ts: ranges를 _ranges로 변경 - BudgetProgressCard.test.tsx: waitFor import 제거 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
49
README.md
49
README.md
@@ -1,8 +1,21 @@
|
||||
# Welcome to your Lovable project
|
||||
# 💰 Zellyy Finance - 개인 가계부 관리 애플리케이션
|
||||
|
||||
## Project info
|
||||
[](https://vercel.com)
|
||||
[](https://github.com/hansoo./zellyy-finance/actions)
|
||||
[](https://reactjs.org/)
|
||||
[](https://www.typescriptlang.org/)
|
||||
[](https://vitejs.dev/)
|
||||
|
||||
**URL**: https://lovable.dev/projects/79bc38c3-bdd0-4a7f-b4db-0ec501bdb94f
|
||||
React와 TypeScript로 구축된 현대적인 개인 가계부 관리 애플리케이션입니다.
|
||||
|
||||
## 🚀 라이브 데모
|
||||
|
||||
- **프로덕션**: [zellyy-finance.vercel.app](https://zellyy-finance.vercel.app)
|
||||
- **스테이징**: Preview 배포는 PR 생성 시 자동으로 생성됩니다.
|
||||
|
||||
## 📋 프로젝트 정보
|
||||
|
||||
**Lovable Project URL**: https://lovable.dev/projects/79bc38c3-bdd0-4a7f-b4db-0ec501bdb94f
|
||||
|
||||
## How can I edit this code?
|
||||
|
||||
@@ -86,10 +99,32 @@ npm run type-check
|
||||
npx tsc --noEmit
|
||||
```
|
||||
|
||||
## How can I deploy this project?
|
||||
## 🚀 배포 가이드
|
||||
|
||||
Simply open [Lovable](https://lovable.dev/projects/79bc38c3-bdd0-4a7f-b4db-0ec501bdb94f) and click on Share -> Publish.
|
||||
이 프로젝트는 Vercel을 통해 자동 배포됩니다.
|
||||
|
||||
## I want to use a custom domain - is that possible?
|
||||
### 자동 배포
|
||||
- **프로덕션**: `main` 브랜치에 푸시하면 자동으로 프로덕션 배포
|
||||
- **프리뷰**: PR 생성 시 자동으로 미리보기 배포 생성
|
||||
- **스테이징**: `develop` 브랜치는 스테이징 환경으로 배포
|
||||
|
||||
We don't support custom domains (yet). If you want to deploy your project under your own domain then we recommend using Netlify. Visit our docs for more details: [Custom domains](https://docs.lovable.dev/tips-tricks/custom-domain/)
|
||||
### 배포 설정
|
||||
자세한 배포 설정 방법은 [DEPLOYMENT.md](./DEPLOYMENT.md)를 참조하세요.
|
||||
|
||||
### 필수 환경 변수
|
||||
```env
|
||||
VITE_APPWRITE_ENDPOINT=https://your-appwrite-endpoint/v1
|
||||
VITE_APPWRITE_PROJECT_ID=your-project-id
|
||||
VITE_APPWRITE_DATABASE_ID=default
|
||||
VITE_APPWRITE_TRANSACTIONS_COLLECTION_ID=transactions
|
||||
VITE_APPWRITE_API_KEY=your-appwrite-api-key
|
||||
VITE_DISABLE_LOVABLE_BANNER=true
|
||||
```
|
||||
|
||||
## 🔗 커스텀 도메인
|
||||
|
||||
Vercel을 통해 커스텀 도메인을 쉽게 연결할 수 있습니다:
|
||||
1. Vercel 프로젝트 Settings > Domains
|
||||
2. 원하는 도메인 입력
|
||||
3. DNS 설정 업데이트
|
||||
4. SSL 인증서 자동 설정
|
||||
|
||||
Reference in New Issue
Block a user