Commit Graph

38 Commits

Author SHA1 Message Date
hansoo
9851627ff1 feat: Add CI/CD pipeline and code quality improvements
- Add GitHub Actions workflow for automated CI/CD
- Configure Node.js 18.x and 20.x matrix testing
- Add TypeScript type checking step
- Add ESLint code quality checks with enhanced rules
- Add Prettier formatting verification
- Add production build validation
- Upload build artifacts for deployment
- Set up automated testing on push/PR
- Replace console.log with environment-aware logger
- Add pre-commit hooks for code quality
- Exclude archive folder from linting

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-12 15:27:54 +09:00
hansoo
f83bb384af Migrate from Supabase to Appwrite with core functionality and UI components 2025-05-05 08:58:27 +09:00
gpt-engineer-app[bot]
176acdd648 Modify add transaction button
The add transaction button was modified to always display "+ 지출 입력" on the right bottom side.
2025-03-23 12:02:59 +00:00
gpt-engineer-app[bot]
74f7282fac Refactor title suggestion logic
Implement new logic for title suggestions based on usage frequency.
2025-03-22 13:12:52 +00:00
gpt-engineer-app[bot]
3229913bde Fix persistent sync failure alerts
Addresses an issue where sync failures were repeatedly triggering notifications, even after the initial failure was acknowledged.
2025-03-22 13:07:18 +00:00
gpt-engineer-app[bot]
c80ad15d79 Fix add transaction button animation
-  Modify the add transaction button to prevent the plus icon from rotating.
-  Implement a hover effect that expands the button and displays "지출 입력" (Add Expense).
2025-03-22 12:14:13 +00:00
gpt-engineer-app[bot]
0d1306ef2e Fix module import errors
Corrected import paths for '@/contexts/BudgetContext' in multiple components to resolve module not found errors.
2025-03-22 07:29:34 +00:00
gpt-engineer-app[bot]
b00e27c1f0 Fix TypeScript errors
- Fix TS2353: Object literal may only specify known properties, and 'paymentMethod' does not exist in type 'Transaction'.
- Fix TS1205: Re-exporting a type when 'isolatedModules' is enabled requires using 'export type'.
- Fix TS2741: Property 'getPaymentMethodStats' is missing in type '{ transactions: Transaction[]; budgetData: BudgetData; categoryBudgets: Record<string, number>; selectedTab: BudgetPeriod; setSelectedTab: React.Dispatch<...>; ... 5 more ...; resetBudgetData: () => void; }' but required in type 'BudgetContextType'.
2025-03-22 07:16:33 +00:00
gpt-engineer-app[bot]
aa8381a823 Add payment method selection
Adds a payment method selection (Credit Card, Cash) to the expense form and includes a line separator. Also requests to add a graph showing the proportion of credit card and cash usage in expense analytics, but this part is not implemented in this commit.
2025-03-22 07:08:02 +00:00
gpt-engineer-app[bot]
508eea9cde Refactor expense form and categories
-   Rename "지출 추가" to "지출 입력" in the add expense dialog.
-   Rename "교통비" to "교통" in categories and ensure all 4 icons are displayed on a single line.
2025-03-22 06:45:50 +00:00
gpt-engineer-app[bot]
c1a64ed711 Add animation effects
Adds subtle animation effects to improve user experience.
2025-03-22 06:43:22 +00:00
gpt-engineer-app[bot]
e0d4cf61c7 Refine add transaction button
The add transaction button is too large initially. This commit changes the button to display fully for 3 seconds, then transition to a smaller "+" icon button.
2025-03-22 06:41:04 +00:00
gpt-engineer-app[bot]
c57d56820f Show expense input button label
Display "지출 입력" label on the add transaction button to improve clarity.
2025-03-22 06:38:48 +00:00
gpt-engineer-app[bot]
09894589b4 Fix welcome message and sync
- Prevent duplicate welcome messages.
- Remove sync notifications.
- Ensure automatic sync updates last sync time.
2025-03-22 06:26:05 +00:00
gpt-engineer-app[bot]
71aebf8b5b Format dates for synchronization
Use ISO format for data synchronization and user-friendly format for display.
2025-03-17 23:47:05 +00:00
gpt-engineer-app[bot]
61acb461e0 Refactor useToast hook
The useToast hook was refactored into smaller, more manageable files to improve code organization and maintainability.
2025-03-16 09:47:29 +00:00
gpt-engineer-app[bot]
662cacbc99 Prevent duplicate toast notifications
The application was displaying duplicate toast notifications due to events being triggered multiple times. This commit prevents duplicate notifications.
2025-03-16 09:38:39 +00:00
gpt-engineer-app[bot]
7ab79d125e Fix toast and data reset issues
- Resolved issue where budget creation toast appeared before expense creation toast.
- Fixed data reset causing a redirect to the login screen.
2025-03-16 09:13:08 +00:00
gpt-engineer-app[bot]
da9120ba61 Fix analytics graph and toast
- Corrected analytics graph to only display budget data when budget is entered.
- Fixed issue where expense toast notifications were appearing twice.
2025-03-16 08:56:39 +00:00
gpt-engineer-app[bot]
2cb8a73bab Reduce dialog width
Reduce the width of the welcome and expense dialogs to improve the visibility of rounded corners.
2025-03-16 06:06:55 +00:00
gpt-engineer-app[bot]
f98db16d17 Fix onboarding and data issues
- Fix issue where welcome dialog reappears.
- Fix issue where new expenses are not reflected.
- Improve card layout on mobile devices.
2025-03-16 05:47:21 +00:00
gpt-engineer-app[bot]
74865848f5 Fix type error in AddTransactionButton
The type of the 'type' property in the newExpense object was incorrect, causing a TypeScript error. Changed the type to be explicitly 'expense' to match the Transaction type definition.
2025-03-16 05:35:23 +00:00
gpt-engineer-app[bot]
0824b812cb Fix data persistence issue
Addresses a problem where budget and expense data was not being saved correctly.
2025-03-16 05:34:18 +00:00
gpt-engineer-app[bot]
8783a607fa Refactor AddTransactionButton component
Refactor the AddTransactionButton component into smaller, more manageable components to improve code readability and maintainability.
2025-03-15 05:11:41 +00:00
gpt-engineer-app[bot]
7eae68150b Fix: Resolve TypeScript errors
- Import `CloudSync` from `lucide-react`
- Define `EXPENSE_CATEGORIES` in `AddTransactionButton.tsx`
2025-03-15 05:10:53 +00:00
gpt-engineer-app[bot]
1ad6e5b685 Refactor form component
Refactor the form component to use a hybrid approach.
2025-03-15 05:09:25 +00:00
gpt-engineer-app[bot]
6d1e1f91f4 Rename "Add Transaction" to "Add Expense"
The prompt requests to rename "Add Transaction" to "Add Expense".
2025-03-15 04:50:42 +00:00
gpt-engineer-app[bot]
a942858c97 Enhance expense input category
Add icons to the expense input category selection in the add transaction dialog.
2025-03-15 04:21:54 +00:00
gpt-engineer-app[bot]
2071453b2b Format number inputs with commas
Formats numeric input fields to display commas for every three digits.
2025-03-15 04:08:55 +00:00
gpt-engineer-app[bot]
2626e35924 Reorder expense categories
Reorder the expense categories in the add transaction dialog to 식비, 생활비, 교통비.
2025-03-15 03:22:31 +00:00
gpt-engineer-app[bot]
7e10140b2e Improve transaction form UI
Add category buttons for quicker selection.
Change save button color to neuro-income.
2025-03-15 03:03:54 +00:00
gpt-engineer-app[bot]
1ce5e3927c Implement category selection in expense form
The category field in the expense input form is now implemented as a selection between three options.
2025-03-15 03:02:56 +00:00
gpt-engineer-app[bot]
77a966c87c Show expense dialog directly
Modify the AddTransactionButton component to directly show the expense input dialog when the button is clicked, instead of showing the "지출" option first.
2025-03-15 03:02:01 +00:00
gpt-engineer-app[bot]
0630acc52c Change add transaction button
- Modify the add transaction button to display a "+" icon.
- Implement functionality to open an expense input form when the button is pressed.
2025-03-15 02:59:59 +00:00
gpt-engineer-app[bot]
d75f03ce77 Remove income transaction option
Removes the income transaction option from the add transaction button.
Keeps only the expense transaction option with neuro-income color.
2025-03-15 02:57:39 +00:00
gpt-engineer-app[bot]
0a4a689915 Update point color
Update the point color to neuro-income.
2025-03-15 01:47:38 +00:00
gpt-engineer-app[bot]
d7e5c0bf48 Prepare for Capacitor integration
This commit prepares the codebase for potential integration with Capacitor to build a mobile application.
2025-03-14 14:01:18 +00:00
gpt-engineer-app[bot]
cb4c78ebeb Create new Flutter app
The prompt requests the creation of a new app with a neumorphic design, similar to a household account book, using Flutter.
2025-03-08 07:56:49 +00:00