Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated ReadME #2

Merged
merged 1 commit into from
Jun 7, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 43 additions & 3 deletions ReadME.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,47 @@
<!DOCTYPE html>
<html>
<head>
<title>Microservices Ticket Marketplace</title>
<style>

</style>
</head>
<body>
<header>
<h1>This application demonstrates the use of microservices</h1>
</header>

<header>
<h2>Microservices Ticket Marketplace</h2>
<img src="image-url" alt="Microservices Ticket Marketplace">

<h3>Services</h3>
<h4>Auth Service</h4>
<p>The Auth service handles user sign-ins and sign-outs. It ensures secure authentication and manages user sessions. By utilizing this service, users can securely access the ticket marketplace and perform actions based on their authenticated state.</p>

<h1>This application demonstrates the use of microservices</h1>
<h4>Client Service</h4>
<p>The Client service is responsible for the frontend part of the application. It utilizes Next.js and React to provide a dynamic and responsive user interface. Users can browse available tickets, make purchases, and view their orders through this service.</p>

</header>
<h4>Expiration Service</h4>
<p>The Expiration service tracks and manages order expirations. It utilizes a timer mechanism to determine when orders should be considered expired. This service ensures that orders are automatically canceled if not completed within a specific time frame, providing a seamless user experience.</p>

<h4>Orders Service</h4>
<p>The Orders service is in charge of managing all aspects related to orders. It handles the creation, modification, and retrieval of orders. By utilizing this service, users can place orders for tickets and manage their existing orders effectively.</p>

<h4>Tickets Service</h4>
<p>The Tickets service handles all operations related to tickets. It allows users to create new tickets, update existing ones, and retrieve ticket information. This service plays a vital role in the ticket marketplace by ensuring accurate and up-to-date ticket listings.</p>

<h4>Payments Service</h4>
<p>The Payments service is responsible for processing payments within the ticket marketplace. It handles the creation and management of payment transactions, ensuring secure and reliable payment processing. By utilizing this service, users can complete their purchases and receive confirmation of successful payments.</p>

<h3>Infrastructure and Tools</h3>
<h4>Skaffold</h4>
<p>Skaffold is utilized in this application to streamline the development and deployment workflow. It automates the building, tagging, and deployment of services, allowing for efficient and rapid development iterations. Skaffold integrates seamlessly with Kubernetes, making it an excellent tool for managing microservices-based projects.</p>

<h4>Kubernetes</h4>
<p>Kubernetes is employed as the container orchestration platform for this application. It provides scalability, resilience, and load balancing capabilities to the microservices architecture. Kubernetes ensures that services are distributed across multiple pods and can be scaled horizontally based on demand. This makes the application more robust and resilient to failures.</p>

<h4>Docker</h4>
<p>Docker is used for containerization in this application. Each service is packaged into a Docker container, which encapsulates its dependencies and provides consistency across different environments. Docker containers are lightweight, portable, and enable efficient deployment and scaling of microservices.</p>

<h4>NATS</h4>
<p>NATS (NATS Streaming or NATS.io) is utilized for inter-service communication within the microservices architecture. It provides a lightweight and scalable messaging system that enables services to communicate asynchronously. NATS ensures reliable
Loading