Skip to content

Commit a11a2b2

Browse files
authored
Merge pull request #1151 from ChildMindInstitute/release/1.3.16
Release/1.3.16
2 parents 53792f6 + 813bf78 commit a11a2b2

45 files changed

Lines changed: 2840 additions & 4555 deletions

Some content is hidden

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

.env.default

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,13 @@ REDIS__HOST=redis
1919

2020
# CORS
2121
CORS__ALLOW_ORIGINS=*
22+
#CORS__ALLOW_ORIGINS_REGEX=
2223
CORS__ALLOW_CREDENTIALS=true
2324
CORS__ALLOW_METHODS=*
2425
CORS__ALLOW_HEADERS=*
2526

2627

28+
2729
# Authentication
2830
AUTHENTICATION__ACCESS_TOKEN__SECRET_KEY="secret1"
2931
AUTHENTICATION__REFRESH_TOKEN__SECRET_KEY="secret2"
@@ -80,7 +82,8 @@ MONGO__DB=mindlogger
8082
MONGO__AES_KEY=
8183

8284
# RabbitMq
83-
RABBITMQ__USE_SSL=False
85+
# Uncommnent for local development
86+
# RABBITMQ__USE_SSL=False
87+
RABBITMQ__URL=rabbitmq
8488

8589

86-
GIRDER_MONGO_URI="mongodb://localhost:27017/mindlogger"

.github/pull_request_template.md

Lines changed: 49 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,52 @@
1-
resolves: M2-####
1+
<!-- Use this template as a guide to describe your pull request, and adjust as necessary. -->
2+
<!-- Include information that helps your peers review your updates and understand this -->
3+
<!-- repository's history of changes over time. -->
24

3-
### Objective
5+
<!-- Delete any options that are not relevant -->
46

5-
### Notes
7+
- [ ] Tests for the changes have been added
8+
- [ ] Related documentation has been added / updated
9+
- [ ] OSS packages added to MindLogger [open source credit page](https://mindlogger.atlassian.net/jira/servicedesk/projects/MLA/knowledge/articles/340623543?spaceKey=MLA)
610

7-
### Follow up tasks
11+
### 📝 Description
12+
13+
<!-- Contributions are welcome! If there is a corresponding -->
14+
<!-- JIRA ticket, link to it by replacing `#` with ticket number -->
15+
16+
🔗 [Jira Ticket M2-#](https://mindlogger.atlassian.net/browse/M2-#)
17+
18+
<!-- Uncomment if this PR includes a breaking change to the API -->
19+
<!-- ##### ❗BREAKING CHANGE! -->
20+
21+
<!-- Replace this with a high-level description of the features/functionality proposed in the pull request. -->
22+
23+
Changes include:
24+
25+
- [Thing]
26+
- [Other thing]
27+
- [More things]
28+
29+
### 🪤 Peer Testing
30+
31+
<!-- If peer testing is not needed, then delete this section -->
32+
<!-- Uncomment out any of the following as needed: -->
33+
<!-- **Requires `pipenv shell`** -->
34+
<!-- **Requires `pipenv sync --dev`** -->
35+
36+
<!--
37+
Replace this with a series of test steps & expected outcomes.
38+
39+
Example test step:
40+
41+
- This is a test step. Highlight actions **in bold**.
42+
43+
**Expected outcome:** This is what to expect after the step
44+
-->
45+
46+
### ✏️ Notes
47+
48+
<!--
49+
Replace this line with anything else you think may be relevant or related PRs
50+
51+
If there are no notes, then delete this section.
52+
-->

.github/workflows/tests.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,6 @@ jobs:
1111
- name: "Running tests"
1212
run: |
1313
cp .env.default .env
14+
echo -e "\nRABBITMQ__USE_SSL=False" >> .env
1415
docker compose up -d
1516
make dtest

LICENSE.MD

Lines changed: 173 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)