# FullStack Meeting App
This is a simple full-stack application for managing meetings, built with **Go (Gin)** for the backend and **React + Vite** for the frontend.
## 📁 Project Structure
FullStack/ ├── backend/ # Go server using Gin and PostgreSQL ├── frontend/ # React app powered by Vite
- Go (Gin Framework)
- PostgreSQL
- React (Vite)
- GORM (ORM for Go)
- JWT (Authentication)
Make sure PostgreSQL is running and the connection details are correctly set in backend/config/config.go
.
cd backend
go run main.go
cd frontend
npm install
npm run dev
Currently, the frontend and backend run on separate ports. You can serve the frontend build files via Gin if you want to deploy them together under a single server.
- Improve UI design
- Add dashboard for managing meetings
- Connect frontend to backend APIs
- Deploy on a production server
Feel free to open issues for feature requests or bug reports.
---
Let me know if you'd like a version with deployment instructions or Docker support included!