Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Simple Event Management System

License

NotificationsYou must be signed in to change notification settings

jpwhite3/eventr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

78 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CI/CD PipelineLicense: MITJavaSpring BootReactTypeScript

A comprehensive, full-stack event management platform designed for corporate environments. Built with Spring Boot, React, and TypeScript, Eventr provides seamless event creation, registration, and management capabilities with modern features like markdown support, multi-session events, and advanced analytics.

✨ Features

🎪 Event Management

  • Event Creation: Rich event builder with image uploads and markdown-enabled descriptions
  • Multi-Session Support: Create complex events with multiple sessions and prerequisites
  • Event Types: Support for in-person, virtual, and hybrid events
  • Advanced Analytics: Real-time attendance tracking and comprehensive reporting
  • Capacity Management: Waitlist functionality and session capacity controls

👥 User Experience

  • Easy Registration: Streamlined registration process with custom forms
  • QR Code Check-in: Mobile-friendly check-in process
  • Bulk Operations: Efficient bulk check-in and user management
  • Offline Support: Offline check-in capabilities for events
  • Markdown Support: Rich text formatting for event descriptions

🏗️ Technical Features

  • Responsive Design: Mobile-first UI with Bootstrap 5
  • RESTful API: Well-documented Spring Boot backend
  • File Storage: AWS S3 integration for image and document storage
  • Email Integration: Automated email notifications
  • Security: Role-based access control and secure authentication
  • Webhook System: Event-driven integrations with external systems
  • SOLID Architecture: Clean, testable code following SOLID principles

🚀 Quick Start

Prerequisites

  • Java 21 (LTS)
  • Maven 3.9.6+
  • Node.js 18+
  • npm 10+
  • Docker & Docker Compose

🐳 Docker Setup (Recommended)

# Clone the repositorygit clone https://github.com/jpwhite3/eventr.gitcd eventr# Start all services with Docker Composedocker-compose up -d# Initialize AWS services (LocalStack)chmod +x localstack-init/init-aws.sh# Start the backend./mvnw spring-boot:run -Pbackend# In another terminal, start the frontendcd frontendnpm installnpm start# Optional: Start webhook test client for local developmentcd webhook-clientnpm installnpm start

🛠️ Local Development Setup

# Option 1: Full development environment with webhook testing (Recommended)chmod +x start-dev-with-webhooks.sh./start-dev-with-webhooks.sh# Option 2: Basic development script (Unix/Mac)chmod +x start-dev.sh./start-dev.sh# Option 3: Use development script (Windows)start-dev.bat# Option 4: Manual setup with Maven profiles./mvnw spring-boot:run -Pdev# Starts both backend and frontend

📱 Access the Application

📚 Documentation

📖Complete Documentation - Comprehensive guides for developers and integrators

Quick Links

🏗️ Architecture

eventr/├── src/main/kotlin/com/eventr/     # Backend (Spring Boot + Kotlin)│   ├── controller/                 # REST API controllers│   ├── service/                   # Business logic layer│   ├── model/                     # Data models│   ├── repository/                # Data access layer│   └── config/                    # Configuration classes├── frontend/                      # Frontend (React + TypeScript)│   ├── src/components/           # Reusable UI components│   ├── src/pages/               # Page components│   ├── src/api/                 # API client│   └── public/                  # Static assets├── src/test/                     # Backend tests└── docker-compose.yml           # Local development services

🔧 Key Technologies

Backend:

  • Spring Boot 3.3.2
  • Kotlin
  • JPA/Hibernate
  • PostgreSQL
  • AWS S3 (via LocalStack for dev)
  • Maven

Frontend:

  • React 18.2.0
  • TypeScript 5.9.2
  • Bootstrap 5
  • React Router
  • Axios
  • React Markdown

Development:

  • Docker & Docker Compose
  • Testcontainers
  • LocalStack (AWS simulation)
  • MailHog (email testing)

🎨 UI Components

The application includes several reusable components:

  • Event Builder: Rich form with markdown preview
  • Advanced Analytics Dashboard: Real-time charts and metrics
  • QR Scanner: Mobile-optimized check-in interface
  • Form Builder: Dynamic form creation for registrations
  • Session Builder: Multi-session event configuration
  • Bulk Operations: Batch user management tools

📊 API Endpoints

Key API endpoints include:

Events & Registration:

GET    /api/events              # List eventsPOST   /api/events              # Create eventGET    /api/events/{id}         # Get event detailsPUT    /api/events/{id}         # Update eventDELETE /api/events/{id}         # Delete eventGET    /api/registrations       # List registrationsPOST   /api/registrations       # Register for eventPOST   /api/check-in/{id}       # Check in attendeeGET    /api/attendance/{id}     # Get attendance dataGET    /api/sessions            # List sessionsPOST   /api/sessions            # Create session

Webhooks:

GET    /api/webhooks            # List webhooksPOST   /api/webhooks            # Create webhookGET    /api/webhooks/{id}       # Get webhook detailsPUT    /api/webhooks/{id}       # Update webhookDELETE /api/webhooks/{id}       # Delete webhookPOST   /api/webhooks/{id}/test  # Test webhook deliveryPUT    /api/webhooks/{id}/secret # Regenerate webhook secret

See ourAPI Documentation for complete endpoint details.

🧪 Testing

# Run all tests./mvnwtest# Run tests with Testcontainers./mvnwtest -Ptest# Frontend testscd frontendnpmtest# Run with coveragenpmtest -- --coverage

Test Strategy

  • Backend: JUnit 5 + Spring Boot Test + Testcontainers
  • Frontend: Jest + React Testing Library
  • Integration: Testcontainers for database and AWS services
  • E2E: Planned Cypress integration

🏗️ Building for Production

# Build backend./mvnw clean package -DskipTests# Build frontendcd frontendnpm run build# Build Docker imagedocker build -t eventr:latest.

🤝 Contributing

We welcome contributions! Please see ourContributing Guide for details.

Quick Contribution Steps

  1. Fork the repository
  2. Create a feature branch (git checkout -b feature/amazing-feature)
  3. Make your changes
  4. Run tests (./mvnw test && cd frontend && npm test)
  5. Commit your changes (git commit -m 'Add amazing feature')
  6. Push to the branch (git push origin feature/amazing-feature)
  7. Open a Pull Request

Development Guidelines

  • Follow existing code style and conventions
  • Write tests for new features
  • Update documentation as needed
  • Use meaningful commit messages
  • Keep PRs focused and atomic

📈 Roadmap

Near Term (v1.1)

  • Mobile app (React Native)
  • Advanced reporting dashboard
  • Calendar integrations
  • SSO/LDAP authentication

Future (v2.0)

  • Multi-tenant architecture
  • API rate limiting
  • Advanced notification system
  • Integration marketplace

🔐 Security

Security is a top priority. Please report vulnerabilities through GitHub issues or contact the maintainers directly.

📄 License

This project is licensed under the MIT License - see theLICENSE file for details.

🆘 Support

🙏 Acknowledgments

  • Spring Boot team for the excellent framework
  • React community for the amazing ecosystem
  • All contributors who make this project possible

Built with ❤️ for the open source community
Made byYOUR_NAME andcontributors

About

Simple Event Management System

Resources

License

Contributing

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors2

  •  
  •  

[8]ページ先頭

©2009-2025 Movatter.jp