Project Structure
transitpulse/
├── backend/ # Backend codebase (Spring Boot)
│ ├── src/
│ │ ├── main/
│ │ │ ├── java/
│ │ │ │ └── com/
│ │ │ │ └── transitpulse/
│ │ │ │ ├── controller/ # REST controllers
│ │ │ │ ├── model/ # Domain models
│ │ │ │ ├── repository/ # Data access layer (Cassandra repository interfaces)
│ │ │ │ ├── service/ # Service layer (business logic)
│ │ │ │ ├── config/ # Configuration classes (Kafka, Cassandra, etc.)
│ │ │ │ └── TransitPulseApplication.java # Main Spring Boot application
│ │ ├── resources/
│ │ │ ├── application.properties # Spring Boot application properties
│ │ │ ├── logback-spring.xml # Logging configuration
│ │ │ └── templates/ # (not applicable)
│ │ └── test/ # Unit and integration tests
│ │ └── java/
│ │ └── com/
│ │ └── transitpulse/
│ │ ├── controller/ # Test cases for controllers
│ │ ├── service/ # Test cases for services
│ │ └── repository/ # Test cases for repositories
│ ├── pom.xml # Maven build configuration
│ └── Dockerfile # Dockerfile for backend service
├── frontend/ # Frontend codebase (Angular)
│ ├── src/
│ │ ├── app/
│ │ │ ├── components/ # Angular components
│ │ │ ├── services/ # Services for API calls
│ │ │ ├── models/ # Data models for frontend
│ │ │ ├── app-routing.module.ts # Routing module
│ │ │ ├── app.module.ts # Root module
│ │ │ └── app.component.ts # Root component
│ │ ├── assets/ # Static assets (images, icons, etc.)
│ │ ├── environments/ # Environment configurations (development, production)
│ │ ├── index.html # Main HTML file
│ │ ├── styles.css # Global styles
│ │ └── main.ts # Main entry point for Angular
│ ├── angular.json # Angular CLI configuration
│ ├── package.json # npm package dependencies
│ └── Dockerfile # Dockerfile for frontend service
├── docker-compose.yml # Docker Compose configuration for Kafka, Cassandra, etc.
└── README.md # Project README fileKey Directories and Files
Last updated