Skip to content

Commit 7badc18

Browse files
Merge pull request #673 from aXenDeveloper/email_template_configuration
feat: Add email template configuration
2 parents 01a6dea + ba862a0 commit 7badc18

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+2532
-4841
lines changed

.github/copilot-instructions.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# VitNode AI Coding Agent Guidelines (Extended)
22

3+
The repository is a monorepo for the VitNode framework, which includes a backend API, frontend documentation site, and shared packages. The codebase uses modern web technologies and follows specific conventions for development based on Next.js 15 and Hono.js 4.
4+
35
## Architecture & Key Patterns
46

57
- **Monorepo Structure:**
@@ -8,7 +10,7 @@
810
- `plugins/` for extendable features
911
- **Frontend:**
1012
- Next.js 15, App Router, Server Components
11-
- Use `vitnode/lib/navigation` for navigation (not `next/navigation`)
13+
- Avoid using `next/navigation` directly, use `vitnode/lib/navigation`
1214
- Forms: Use `react-hook-form@7`, server actions for mutations
1315
- UI: Shadcn UI, Tailwind CSS 4, dark/light mode with system detection
1416
- i18n: Use `next-intl`, `t('key')` for translations, `getTranslation` (server), `useTranslation` (client)
@@ -61,3 +63,14 @@
6163
---
6264

6365
For unclear or missing patterns, ask for clarification or request more examples from maintainers.
66+
67+
## New Code
68+
69+
If you add new code or change existing code, always verify that
70+
everything still works by running _each_ of the following checks:
71+
72+
1. `npm run lint` to run the linter.
73+
2. `npm run lint:fix` to fix any linting issues.
74+
3. `npm run test` to run the tests.
75+
76+
Complete the task only after all checks pass.

.github/workflows/build-lint-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- uses: pnpm/action-setup@v4
2323
name: Install pnpm
2424
with:
25-
version: 10.13.1
25+
version: 10.14.0
2626

2727
- name: Install Node.js
2828
uses: actions/setup-node@v4

.github/workflows/bump_publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
- uses: pnpm/action-setup@v4
5353
name: Install pnpm
5454
with:
55-
version: 10.13.1
55+
version: 10.14.0
5656

5757
- name: Install Node.js
5858
uses: actions/setup-node@v4

apps/api/migrations/0001_chemical_tomorrow_man.sql

Lines changed: 0 additions & 2 deletions
This file was deleted.

0 commit comments

Comments
 (0)