Skip to content
Open
Show file tree
Hide file tree
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
39 changes: 34 additions & 5 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,38 @@
Follow the [Meme Battle styleguide](https://github.com/Meme-Battle/styleguide/blob/main/git.md).

## Folder Structure (general) ##



```
README.md - You are here!
```
.
├── api
│ ├── prisma
│ │ ├── migrations
│ │ └── schema.prisma
│ └── src
│ ├── app.controller.ts
│ ├── app.module.ts
│ ├── app.service.ts
│ ├── main.ts
│ └── modules
│ ├── gateways
│ │ ├── gatewayExample.gateway.ts
│ │ └── gateways.module.ts
│ ├── guards
│ │ ├── guardExample.guard.ts
│ │ └── guards.module.ts
│ ├── providers
│ │ ├── providerExample.provider.ts
│ │ └── providers.module.ts
│ ├── repositories
│ │ ├── repositories.module.ts
│ │ └── repositoryExample.repository.ts
│ └── useCases
│ └── useCaseExample
│ ├── CreateExample
│ │ ├── createExample.controller.ts
│ │ ├── createExample.dto.ts
│ │ ├── createExample.schema.ts
│ │ └── createExample.service.ts
│ └── useCaseExample.module.ts
├── CHANGELOG.md
└── README.md
```
6 changes: 2 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Create the PULL_REQUEST_TEMPLATE.md [MBU-10](https://memebattle.atlassian.net/browse/MBU-10)
- Create the project setup [MBU-3](https://memebattle.atlassian.net/browse/MBU-3)

### Fixed

- Fixed Commitlint and Husky settings [MBU-3](https://memebattle.atlassian.net/browse/MBU-3)
- Add content in the contributing file:structure of project [MBU-7](https://memebattle.atlassian.net/browse/MBU-7)
- Fixed Commitlint and Husky settings [MBU-3](https://memebattle.atlassian.net/browse/MBU-3)