Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,26 @@ POSTGRES_PORT=5432
# POSTGRES_USER
# POSTGRES_PASSWORD
# POSTGRES_DB

# Inngest
INNGEST_EVENT_KEY=
INNGEST_SIGNING_KEY=
INNGEST_DEV=1

# Recruitment automation
AUTOMATION_DRY_RUN=1
HKRECRUITMENT_URL=http://localhost:3000
STAGE_A_TEMPLATE_ID=
STAGE_A_EMAIL_SUBJECT=HKN Mu Nu Chapter - Application received
STAGE_B_TEMPLATE_ID=
STAGE_B_EMAIL_SUBJECT=HKN Mu Nu Chapter - Book your interview

# Telegram notifications
TELEGRAM_BOT_TOKEN=
NOTIFY_TG_HR=
NOTIFY_TG_IT=
NOTIFY_TG_VERBOSE=

# Google Calendar / Reports
GOOGLE_CALENDAR_ID=primary
INTERVIEW_REPORTS_FOLDER_ID=
9 changes: 7 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
"build": "next build",
"start": "next start",
"lint": "eslint src",
"pretty": "prettier --check 'src/**/*' '*.{ts,mjs,js}'",
"pretty:fix": "prettier --write 'src/**/*' '*.{ts,mjs,js}'",
"pretty": "prettier --check \"src/**/*\" \"*.{ts,mjs,js}\"",
"pretty:fix": "prettier --write \"src/**/*\" \"*.{ts,mjs,js}\"",
"db:push": "drizzle-kit push",
"db:seed": "pnpm exec tsx src/db/seed.ts",
"db:reset": "pnpm dlx tsx src/db/reset.ts",
Expand Down Expand Up @@ -49,12 +49,15 @@
"drizzle-orm": "^0.44.5",
"drizzle-zod": "^0.8.3",
"googleapis": "^160.0.0",
"inngest": "^4.2.5",
"jotai": "^2.15.0",
"lucide-react": "^0.562.0",
"luxon": "^3.7.2",
"nanoid": "^5.1.6",
"neverthrow": "^8.2.0",
"next": "15.5.10",
"next-themes": "^0.4.6",
"nunjucks": "^3.2.4",
"pg": "^8.16.3",
"react": "19.1.0",
"react-dom": "19.1.0",
Expand All @@ -68,8 +71,10 @@
"@next/eslint-plugin-next": "^15.5.10",
"@tailwindcss/postcss": "^4",
"@types/bcrypt": "^6.0.0",
"@types/luxon": "^3.7.1",
"@types/multer": "^2.0.0",
"@types/node": "^20",
"@types/nunjucks": "^3.2.6",
"@types/pg": "^8.15.5",
"@types/react": "^19",
"@types/react-dom": "^19",
Expand Down
Loading