Skip to content

Commit 82ea5d7

Browse files
refactor!: update to boilerplate mapco 6313 (#78)
* chore: updated cleanupregistry function in redis * feat(configurations): uppdated configurations to match ts-server-boilerplate * test: updated testing configurations * feat: updated src to match boilerplate * feat: updated versions and configurations * fix: mgrs errors * fix: duplicate metric name * feat: added config * fix: errors related to mgrs * test: added test coverage to unit tests * feat: updated the config to match schema * chore: renamed mgrs directory * feat: connected geocoding to new geocoding schema * chore: remove unnecessary comments * chore: removed unnecessary gitignore item * feat: updated schema for redis ttl * fix: workflow elasticsearch * fix: workflow elasticsearch * fix: workflow elasticsearch * fix: workflow elasticsearch * fix: eslint errors * fix: eslint errors * fix: fixed final eslint error * ci: fixed pull request workflow * fix: git comments * fix: eslint warnings * fix: pr comments * feat: changed geocoding schema version * feat: updated schema file * fix: devscript config changes * feat: changed code to match new schema * fix: eslint errors * feat: updated geocoding schema * style: lint:fix * build: removed unnecessary telemetry packages * feat: updated mapcolonies schemas package --------- Co-authored-by: Daniel Hermon <danielhermonsync@gmail.com>
1 parent 496b8d2 commit 82ea5d7

112 files changed

Lines changed: 24126 additions & 19518 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.eslintrc.json

Lines changed: 0 additions & 7 deletions
This file was deleted.

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
#prevent git from chaning line endings of sh file to /r/n on windows systems
22
*.sh text eol=lf
3+
*.* text eol=lf

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ about: Create a report to help us improve
44
title: ''
55
labels: 'bug'
66
assignees: ''
7-
87
---
98

109
**Describe the bug**
1110
A clear and concise description of what the bug is.
1211

1312
**To Reproduce**
1413
Steps to reproduce the behavior:
14+
1515
1. Go to '...'
1616
2. Click on '....'
1717
3. Scroll down to '....'
@@ -23,6 +23,5 @@ A clear and concise description of what you expected to happen.
2323
**Screenshots**
2424
If applicable, add screenshots to help explain your problem.
2525

26-
2726
**Additional context**
2827
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ about: Suggest an idea for this project
44
title: ''
55
labels: 'enhancement'
66
assignees: ''
7-
87
---
98

109
**Is your feature request related to a problem? Please describe.**

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,21 @@
22
Make sure you've read the contributing guidelines (CONTRIBUTING.md)
33
-->
44

5-
| Question | Answer |
6-
| ---------------- | -------------------------------------------------------------------------- |
7-
| Bug fix | ✔/✖ |
8-
| New feature | ✔/✖ |
9-
| Breaking change | ✔/✖ |
10-
| Deprecations | ✔/✖ |
11-
| Documentation | ✔/✖ |
12-
| Tests added | ✔/✖ |
13-
| Chore | ✔/✖ |
5+
| Question | Answer |
6+
| --------------- | ------ |
7+
| Bug fix | ✔/✖ |
8+
| New feature | ✔/✖ |
9+
| Breaking change | ✔/✖ |
10+
| Deprecations | ✔/✖ |
11+
| Documentation | ✔/✖ |
12+
| Tests added | ✔/✖ |
13+
| Chore | ✔/✖ |
1414

1515
Related issues: #XXX , #XXX ...
1616
Closes #XXX ...
1717

18-
Further information:
18+
Further information:
19+
1920
<!--
2021
Here you can provide more information regarding any of the questions written above.
2122
In addition, you can add screenshots, ask the maintainers questions.

.github/dependabot.yaml

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# yaml-language-server: $schema=https://json.schemastore.org/dependabot-2.0.json
2+
version: 2
3+
updates:
4+
# deps
5+
- package-ecosystem: npm
6+
target-branch: 'master'
7+
schedule:
8+
interval: weekly
9+
allow:
10+
- dependency-type: production
11+
directory: /
12+
commit-message:
13+
prefix: 'deps'
14+
groups:
15+
map-colonies:
16+
patterns:
17+
- '@map-colonies/*'
18+
opentelemetry:
19+
patterns:
20+
- '@opentelemetry/*'
21+
patch:
22+
update-types:
23+
- patch
24+
# dev-deps
25+
- package-ecosystem: npm
26+
schedule:
27+
interval: weekly
28+
allow:
29+
- dependency-type: development
30+
directory: /
31+
commit-message:
32+
prefix: 'devdeps'
33+
groups:
34+
map-colonies:
35+
patterns:
36+
- '@map-colonies/*'
37+
opentelemetry:
38+
patterns:
39+
- '@opentelemetry/*'
40+
types:
41+
patterns:
42+
- '@types/*'
43+
dev-patch:
44+
update-types:
45+
- patch
46+
47+
# github deps
48+
- package-ecosystem: github-actions
49+
schedule:
50+
interval: weekly
51+
commit-message:
52+
prefix: 'ci'
53+
directory: '/'

.github/workflows/build-and-push.yaml

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,13 @@ permissions:
1919

2020
jobs:
2121
build_and_push_docker:
22-
uses: MapColonies/shared-workflows/.github/workflows/build-and-push-docker.yaml@v3.1.0
23-
secrets: inherit
22+
uses: MapColonies/shared-workflows/.github/workflows/build-and-push-docker.yaml@v4
23+
secrets: inherit
24+
with:
25+
scope: vector
26+
27+
build_and_push_helm:
28+
uses: MapColonies/shared-workflows/.github/workflows/build-and-push-helm.yaml@v4
29+
secrets: inherit
30+
with:
31+
scope: vector

0 commit comments

Comments
 (0)