This project contains a frontend and a backend service, containerized using Docker.
- Docker
- Docker Compose
-
Clone the repository:
git clone https://github.com/TheCoder30ec4/GenAI_Hackaton.git cd GenAI_Hackaton
-
Build and run the containers:
docker-compose up --build
This command will build the Docker images for the frontend and backend services and start the containers.
-
Access the applications:
- Frontend: Open your browser and navigate to http://localhost:3000
- Backend: The backend service will be running at http://localhost:8000
- backend: A Python-based backend service using the FastAPI framework.
- frontend: A JavaScript-based frontend service using the Next.js framework.
.
├── Backend
│ ├── app
│ ├── Dockerfile
│ └── requirements.txt
├── Frontend
│ └── ease-my-trip
│ ├── app
│ ├── public
│ ├── Dockerfile
│ ├── next.config.ts
│ ├── package.json
│ └── ...
├── docker-compose.yaml
└── README.md