MrJeyhun / blackbazar

Full Stack Microservice application for selling tickets

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool


BLACKBAZAR

β—¦ Developed with the software and tools below.

TypeScript Express Redis Next.js Kubernetes Docker Mongodb Nginx Jest Bootstrap Axios ESLint GitHub%20Actions YAML Stripe JSON

GitHub license git-last-commit GitHub commit activity GitHub top language

πŸ“– Table of Contents


πŸ“‚ Repository Structure

└── blackbazar/
    β”œβ”€β”€ .github/
    β”‚   └── workflows/
    β”‚       β”œβ”€β”€ deploy-auth.yml
    β”‚       β”œβ”€β”€ deploy-client.yml
    β”‚       β”œβ”€β”€ deploy-expiration.yml
    β”‚       β”œβ”€β”€ deploy-manifests.yml
    β”‚       β”œβ”€β”€ deploy-orders.yml
    β”‚       β”œβ”€β”€ deploy-payments.yml
    β”‚       β”œβ”€β”€ deploy-tickets.yml
    β”‚       β”œβ”€β”€ tests-auth.yml
    β”‚       β”œβ”€β”€ tests-orders.yml
    β”‚       β”œβ”€β”€ tests-payments.yml
    β”‚       └── tests-tickets.yml
    β”œβ”€β”€ .prettierignore
    β”œβ”€β”€ auth/
    β”‚   β”œβ”€β”€ Dockerfile
    β”‚   β”œβ”€β”€ package-lock.json
    β”‚   β”œβ”€β”€ package.json
    β”‚   β”œβ”€β”€ src/
    β”‚   β”‚   β”œβ”€β”€ app.ts
    β”‚   β”‚   β”œβ”€β”€ index.ts
    β”‚   β”‚   β”œβ”€β”€ models/
    β”‚   β”‚   β”œβ”€β”€ routes/
    β”‚   β”‚   β”œβ”€β”€ services/
    β”‚   β”‚   β”œβ”€β”€ test/
    β”‚   β”‚   └── types/
    β”‚   └── tsconfig.json
    β”œβ”€β”€ client/
    β”‚   β”œβ”€β”€ .eslintrc.json
    β”‚   β”œβ”€β”€ Dockerfile
    β”‚   β”œβ”€β”€ api/
    β”‚   β”‚   └── buildClient.ts
    β”‚   β”œβ”€β”€ components/
    β”‚   β”‚   └── Header.tsx
    β”‚   β”œβ”€β”€ hooks/
    β”‚   β”‚   └── useRequest.ts
    |   β”œβ”€β”€ types/
    β”‚   β”‚   └── types.ts
    β”‚   β”œβ”€β”€ next.config.js
    β”‚   β”œβ”€β”€ package-lock.json
    β”‚   β”œβ”€β”€ package.json
    β”‚   └── pages/
    β”‚       β”œβ”€β”€ _app.tsx
    β”‚       β”œβ”€β”€ auth/
    β”‚       β”œβ”€β”€ index.tsx
    β”‚       β”œβ”€β”€ orders/
    β”‚       └── tickets/
    β”œβ”€β”€ expiration/
    β”‚   β”œβ”€β”€ Dockerfile
    β”‚   β”œβ”€β”€ package-lock.json
    β”‚   β”œβ”€β”€ package.json
    β”‚   β”œβ”€β”€ src/
    β”‚   β”‚   β”œβ”€β”€ __mocks__/
    β”‚   β”‚   β”œβ”€β”€ events/
    β”‚   β”‚   β”œβ”€β”€ index.ts
    β”‚   β”‚   β”œβ”€β”€ nats-wrapper.ts
    β”‚   β”‚   └── queues/
    β”‚   └── tsconfig.json
    β”œβ”€β”€ infra/
    β”‚   β”œβ”€β”€ k8s/
    β”‚   β”‚   β”œβ”€β”€ auth-depl.yaml
    β”‚   β”‚   β”œβ”€β”€ auth-mongo-depl.yaml
    β”‚   β”‚   β”œβ”€β”€ client-depl.yaml
    β”‚   β”‚   β”œβ”€β”€ expiration-depl.yaml
    β”‚   β”‚   β”œβ”€β”€ expiration-redis-depl.yaml
    β”‚   β”‚   β”œβ”€β”€ nats-depl.yaml
    β”‚   β”‚   β”œβ”€β”€ orders-depl.yaml
    β”‚   β”‚   β”œβ”€β”€ orders-mongo-depl.yaml
    β”‚   β”‚   β”œβ”€β”€ payments-depl.yaml
    β”‚   β”‚   β”œβ”€β”€ payments-mongo-depl.yaml
    β”‚   β”‚   β”œβ”€β”€ tickets-depl.yaml
    β”‚   β”‚   └── tickets-mongo-depl.yaml
    β”‚   β”œβ”€β”€ k8s-dev/
    β”‚   β”‚   └── ingress-srv.yaml
    β”‚   └── k8s-prod/
    β”‚       └── ingress-srv.yaml
    β”œβ”€β”€ nats-test/
    β”‚   β”œβ”€β”€ package-lock.json
    β”‚   β”œβ”€β”€ package.json
    β”‚   β”œβ”€β”€ src/
    β”‚   β”‚   β”œβ”€β”€ events/
    β”‚   β”‚   β”œβ”€β”€ listener.ts
    β”‚   β”‚   └── publisher.ts
    β”‚   └── tsconfig.json
    β”œβ”€β”€ orders/
    β”‚   β”œβ”€β”€ Dockerfile
    β”‚   β”œβ”€β”€ package-lock.json
    β”‚   β”œβ”€β”€ package.json
    β”‚   β”œβ”€β”€ src/
    β”‚   β”‚   β”œβ”€β”€ __mocks__/
    β”‚   β”‚   β”œβ”€β”€ app.ts
    β”‚   β”‚   β”œβ”€β”€ events/
    β”‚   β”‚   β”œβ”€β”€ index.ts
    β”‚   β”‚   β”œβ”€β”€ models/
    β”‚   β”‚   β”œβ”€β”€ nats-wrapper.ts
    β”‚   β”‚   β”œβ”€β”€ routes/
    β”‚   β”‚   └── test/
    β”‚   └── tsconfig.json
    β”œβ”€β”€ payments/
    β”‚   β”œβ”€β”€ Dockerfile
    β”‚   β”œβ”€β”€ package-lock.json
    β”‚   β”œβ”€β”€ package.json
    β”‚   β”œβ”€β”€ src/
    β”‚   β”‚   β”œβ”€β”€ __mocks__/
    β”‚   β”‚   β”œβ”€β”€ app.ts
    β”‚   β”‚   β”œβ”€β”€ events/
    β”‚   β”‚   β”œβ”€β”€ index.ts
    β”‚   β”‚   β”œβ”€β”€ models/
    β”‚   β”‚   β”œβ”€β”€ nats-wrapper.ts
    β”‚   β”‚   β”œβ”€β”€ routes/
    β”‚   β”‚   β”œβ”€β”€ stripe.ts
    β”‚   β”‚   └── test/
    β”‚   └── tsconfig.json
    β”œβ”€β”€ skaffold.yaml
    └── tickets/
        β”œβ”€β”€ Dockerfile
        β”œβ”€β”€ package-lock.json
        β”œβ”€β”€ package.json
        β”œβ”€β”€ src/
        β”‚   β”œβ”€β”€ __mocks__/
        β”‚   β”œβ”€β”€ app.ts
        β”‚   β”œβ”€β”€ events/
        β”‚   β”œβ”€β”€ index.ts
        β”‚   β”œβ”€β”€ models/
        β”‚   β”œβ”€β”€ nats-wrapper.ts
        β”‚   β”œβ”€β”€ routes/
        β”‚   └── test/
        └── tsconfig.json

🀝 Contributing

Contributions are welcome! Here are several ways you can contribute:

Contributing Guidelines

Click to expand
  1. Fork the Repository: Start by forking the project repository to your GitHub account.
  2. Clone Locally: Clone the forked repository to your local machine using a Git client.
    git clone <your-forked-repo-url>
  3. Create a New Branch: Always work on a new branch, giving it a descriptive name.
    git checkout -b new-feature-x
  4. Make Your Changes: Develop and test your changes locally.
  5. Commit Your Changes: Commit with a clear and concise message describing your updates.
    git commit -m 'Implemented new feature x.'
  6. Push to GitHub: Push the changes to your forked repository.
    git push origin new-feature-x
  7. Submit a Pull Request: Create a PR against the original project repository. Clearly describe the changes and their motivations.

Once your PR is reviewed and approved, it will be merged into the main branch.


About

Full Stack Microservice application for selling tickets


Languages

Language:TypeScript 99.1%Language:Dockerfile 0.7%Language:JavaScript 0.3%