Skip to content

Commit

Permalink
MAT 6727 created excel key worksheet
Browse files Browse the repository at this point in the history
  • Loading branch information
sb-prateekkeerthi committed Mar 18, 2024
1 parent 76c54e4 commit 6bae7ac
Show file tree
Hide file tree
Showing 15 changed files with 938 additions and 189 deletions.
25 changes: 14 additions & 11 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,25 @@ Jira Ticket: [MAT-0000](https://jira.cms.gov/browse/MAT-0000)
### Summary

### All Submissions
* [ ] This PR has the JIRA linked.
* [ ] Required tests are included.
* [ ] No extemporaneous files are included (i.e Complied files or testing results).
* [ ] This PR is merging into the **correct branch**.
* [ ] All Documentation needed for this PR is Complete (or noted in a TODO or other Ticket).
* [ ] Any breaking changes or failing automations are noted by placing a comment on this PR.

- [ ] This PR has the JIRA linked.
- [ ] Required tests are included.
- [ ] No extemporaneous files are included (i.e Complied files or testing results).
- [ ] This PR is merging into the **correct branch**.
- [ ] All Documentation needed for this PR is Complete (or noted in a TODO or other Ticket).
- [ ] Any breaking changes or failing automations are noted by placing a comment on this PR.

### DevSecOps

If there is a question if this PR has a security or infrastructure impact, please contact the Security or DevOps engineer assigned to this project to discuss it further.

* [ ] This PR has NO significant security impact (i.e Changing auth methods, Adding a new user type, Adding a required but vulnerable package).
* [ ] All CDN/Web dependencies are hosted internally (i.e MADiE-Root Repo).
- [ ] This PR has NO significant security impact (i.e Changing auth methods, Adding a new user type, Adding a required but vulnerable package).
- [ ] All CDN/Web dependencies are hosted internally (i.e MADiE-Root Repo).

### Reviewers

By Approving this PR you are attesting to the following:

* Code is maintainable and reusable, reuses existing code and infrastructure where appropriate, and accomplishes the task’s purpose.
* The tests appropriately test the new code, including edge cases.
* If you have any concerns they are brought up either to the developer assigned, security engineer, or leads.
- Code is maintainable and reusable, reuses existing code and infrastructure where appropriate, and accomplishes the task’s purpose.
- The tests appropriately test the new code, including edge cases.
- If you have any concerns they are brought up either to the developer assigned, security engineer, or leads.
2 changes: 1 addition & 1 deletion .github/workflows/gitleaks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ jobs:
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}
uses: Ilshidur/action-slack@master
with:
args: "Potential Secrets found in: https://github.com/{{ GITHUB_REPOSITORY }}/commit/{{ GITHUB_SHA }} Link to build with full gitleaks output: https://github.com/{{ GITHUB_REPOSITORY }}/commit/{{ GITHUB_SHA }}/checks"
args: 'Potential Secrets found in: https://github.com/{{ GITHUB_REPOSITORY }}/commit/{{ GITHUB_SHA }} Link to build with full gitleaks output: https://github.com/{{ GITHUB_REPOSITORY }}/commit/{{ GITHUB_SHA }}/checks'
2 changes: 1 addition & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"singleQuote": true,
"trailingComma": "all"
}
}
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

## Description

[Nest](https://github.com/nestjs/nest) framework Application for hosting a Excel Export service for MADiE
[Nest](https://github.com/nestjs/nest) framework Application for hosting a Excel Export service for MADiE

## Installation

Expand Down Expand Up @@ -59,5 +59,6 @@ $ npm run test:cov
```

## Docker

Dockerfile and docker-compose
```docker compose down --remove-orphans && docker volume prune && docker compose build --no-cache && docker compose up --force-recreate```
`docker compose down --remove-orphans && docker volume prune && docker compose build --no-cache && docker compose up --force-recreate`
7 changes: 2 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,15 @@
version: '3.9'

services:

app:
build:
context: .
dockerfile: Dockerfile
container_name: excel-export
environment:
- PORT=3000
- JWT_SECRET=${JWT_SECRET}
- JWT_SECRET=${JWT_SECRET}
ports:
- '3000:3000'
- '3000:3000'
volumes:
- /dist


Loading

0 comments on commit 6bae7ac

Please sign in to comment.