feat: initial scaffold with Event Management, Participant Management, and Budget Management

- Express backend with JWT auth, PostgreSQL, full CRUD APIs
- React + Vite + TailwindCSS frontend with RTL Hebrew UI
- Event Creation & Management (create/edit/delete/list events)
- Participant Management (add/edit/delete/status tracking per event)
- Budget Management (income/expense tracking with balance summary)
- Docker Compose setup with PostgreSQL
- /health endpoint with commit-id and DB status

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Fullstack Developer
2026-02-21 18:55:40 +00:00
parent ae6f833207
commit d2d7ee27d5
23 changed files with 1815 additions and 0 deletions

21
client/tailwind.config.js Normal file
View File

@@ -0,0 +1,21 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: {
50: '#f0f9ff',
100: '#e0f2fe',
500: '#0ea5e9',
600: '#0284c7',
700: '#0369a1',
}
}
},
},
plugins: [],
}