diff --git a/.env b/.env
index 528b49e2b8d..0496daa2587 100644
--- a/.env
+++ b/.env
@@ -2,9 +2,9 @@
REACT_APP_TITLE=CARE
REACT_APP_META_DESCRIPTION=Revolutionizing EMR with AI: Open Healthcare Network develops free, open-source tools to enhance efficiency in global healthcare delivery. Our EMR system is recognized as a Digital Public Good by the United Nations.
-REACT_APP_COVER_IMAGE=https://cdn.coronasafe.network/care_logo.svg
-REACT_APP_COVER_IMAGE_ALT=https://cdn.coronasafe.network/care_logo.svg
-REACT_PUBLIC_URL=https://care.coronasafe.in
+REACT_APP_COVER_IMAGE=https://cdn.ohc.network/care_logo.svg
+REACT_APP_COVER_IMAGE_ALT=https://cdn.ohc.network/care_logo.svg
+REACT_PUBLIC_URL=https://care.ohc.network
# Dev envs
ESLINT_NO_DEV_ERRORS=true
diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS
index cfb46e7c266..bacb0c8ed79 100644
--- a/.github/CODEOWNERS
+++ b/.github/CODEOWNERS
@@ -1 +1 @@
-* @coronasafe/code-reviewers @coronasafe/care-fe-code-reviewers
+* @ohcnetwork/care-fe-code-reviewers
diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md
index b67b01cc863..8e77009ccd4 100644
--- a/.github/pull_request_template.md
+++ b/.github/pull_request_template.md
@@ -5,12 +5,12 @@
- Change 2
- More?
-@coronasafe/care-fe-code-reviewers @coronasafe/code-reviewers
+@ohcnetwork/code-reviewers
## Merge Checklist
- [ ] Add specs that demonstrate bug / test a new feature.
-- [ ] Update [product documentation](https://docs.coronasafe.network/coronasafe-care-documentation/architecture/architecture-and-layering-of-care).
+- [ ] Update [product documentation](https://docs.ohc.network).
- [ ] Ensure that UI text is kept in I18n files.
- [ ] Prep screenshot or demo video for changelog entry, and attach it to issue.
- [ ] Request for Peer Reviews
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml
index b91d810cadd..c9334ebd3e3 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -9,7 +9,7 @@ on:
jobs:
CodeQL-Build:
runs-on: ubuntu-latest
- if: github.repository == 'coronasafe/care_fe'
+ if: github.repository == 'ohcnetwork/care_fe'
permissions:
security-events: write
actions: read
diff --git a/.github/workflows/comment-p1-issues.yml b/.github/workflows/comment-p1-issues.yml
index 930b7d14c90..f82432f5c6f 100644
--- a/.github/workflows/comment-p1-issues.yml
+++ b/.github/workflows/comment-p1-issues.yml
@@ -7,7 +7,7 @@ on:
jobs:
add-comment:
- if: github.event.label.name == 'P1' && github.repository == 'coronasafe/care_fe'
+ if: github.event.label.name == 'P1' && github.repository == 'ohcnetwork/care_fe'
runs-on: ubuntu-latest
permissions:
issues: write
diff --git a/.github/workflows/cypress.yaml b/.github/workflows/cypress.yaml
index f2f8fbd45cb..f5039548e76 100644
--- a/.github/workflows/cypress.yaml
+++ b/.github/workflows/cypress.yaml
@@ -12,7 +12,7 @@ on:
jobs:
cypress-run:
permissions: write-all
- if: github.repository == 'coronasafe/care_fe'
+ if: github.repository == 'ohcnetwork/care_fe'
runs-on: ubuntu-latest
strategy:
fail-fast: false
@@ -34,7 +34,7 @@ jobs:
- name: Checkout care 📥
uses: actions/checkout@v3
with:
- repository: coronasafe/care
+ repository: ohcnetwork/care
path: care
ref: ${{ steps.backend-branch.outputs.branch }}
diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml
index 1dfea93482d..f2e0aa24c64 100644
--- a/.github/workflows/deploy.yaml
+++ b/.github/workflows/deploy.yaml
@@ -27,7 +27,7 @@ env:
jobs:
test:
- if: github.repository == 'coronasafe/care_fe'
+ if: github.repository == 'ohcnetwork/care_fe'
runs-on: ubuntu-latest
name: Test
steps:
diff --git a/.github/workflows/issue-automation.yml b/.github/workflows/issue-automation.yml
index 421243bf605..1767d0fd313 100644
--- a/.github/workflows/issue-automation.yml
+++ b/.github/workflows/issue-automation.yml
@@ -10,39 +10,39 @@ jobs:
issue_opened_and_reopened:
name: issue_opened_and_reopened
runs-on: ubuntu-latest
- if: github.repository == 'coronasafe/care_fe' && github.event_name == 'issues' && github.event.action == 'opened' || github.event.action == 'reopened'
+ if: github.repository == 'ohcnetwork/care_fe' && github.event_name == 'issues' && github.event.action == 'opened' || github.event.action == 'reopened'
steps:
- name: 'Move issue to "Triage"'
uses: leonsteinhaeuser/project-beta-automations@v1.2.1
with:
gh_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- organization: coronasafe
+ organization: ohcnetwork
project_id: 4
resource_node_id: ${{ github.event.issue.node_id }}
status_value: "Triage"
issue_closed:
name: issue_closed
runs-on: ubuntu-latest
- if: github.repository == 'coronasafe/care_fe' && github.event_name == 'issues' && github.event.action == 'closed'
+ if: github.repository == 'ohcnetwork/care_fe' && github.event_name == 'issues' && github.event.action == 'closed'
steps:
- name: 'Moved issue to "Done"'
uses: leonsteinhaeuser/project-beta-automations@v1.2.1
with:
gh_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- organization: coronasafe
+ organization: ohcnetwork
project_id: 4
resource_node_id: ${{ github.event.issue.node_id }}
status_value: "Done"
issue_assigned:
name: issue_assigned
runs-on: ubuntu-latest
- if: github.repository == 'coronasafe/care_fe' && github.event_name == 'issues' && github.event.action == 'assigned'
+ if: github.repository == 'ohcnetwork/care_fe' && github.event_name == 'issues' && github.event.action == 'assigned'
steps:
- name: 'Move issue to "In Progress"'
uses: leonsteinhaeuser/project-beta-automations@v1.2.1
with:
gh_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
- organization: coronasafe
+ organization: ohcnetwork
project_id: 4
resource_node_id: ${{ github.event.issue.node_id }}
status_value: "In Progress"
diff --git a/.github/workflows/label-deploy-failed.yml b/.github/workflows/label-deploy-failed.yml
index cbb6d269891..3137232f539 100644
--- a/.github/workflows/label-deploy-failed.yml
+++ b/.github/workflows/label-deploy-failed.yml
@@ -13,7 +13,7 @@ jobs:
auto-label-deploy-failed:
runs-on: ubuntu-latest
if: |
- github.repository == 'coronasafe/care_fe' && github.event.issue.pull_request &&
+ github.repository == 'ohcnetwork/care_fe' && github.event.issue.pull_request &&
contains(github.event.comment.body, 'Deploy Preview')
steps:
- name: Add 'Deploy-Failed'
diff --git a/.github/workflows/label-merge-conflict.yml b/.github/workflows/label-merge-conflict.yml
index 5ae616effa7..0491a102b2c 100644
--- a/.github/workflows/label-merge-conflict.yml
+++ b/.github/workflows/label-merge-conflict.yml
@@ -12,7 +12,7 @@ on:
jobs:
auto-label:
- if: github.repository == 'coronasafe/care_fe'
+ if: github.repository == 'ohcnetwork/care_fe'
runs-on: ubuntu-latest
steps:
- uses: prince-chrismc/label-merge-conflicts-action@v2
diff --git a/.github/workflows/label-wip.yml b/.github/workflows/label-wip.yml
index 15bd4994fa6..d99ba77a9a5 100644
--- a/.github/workflows/label-wip.yml
+++ b/.github/workflows/label-wip.yml
@@ -9,7 +9,7 @@ on:
jobs:
check-linked-issues:
- if: github.repository == 'coronasafe/care_fe'
+ if: github.repository == 'ohcnetwork/care_fe'
name: Check linked issues
runs-on: ubuntu-latest
outputs:
@@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-latest
needs: check-linked-issues
permissions: write-all
- if: github.repository == 'coronasafe/care_fe' && join(needs.check-linked-issues.outputs.linked_issues) != ''
+ if: github.repository == 'ohcnetwork/care_fe' && join(needs.check-linked-issues.outputs.linked_issues) != ''
steps:
- name: Label
uses: actions/github-script@v6
diff --git a/.github/workflows/ossar-analysis.yml b/.github/workflows/ossar-analysis.yml
index 4e806124e77..46c0fb01c6b 100644
--- a/.github/workflows/ossar-analysis.yml
+++ b/.github/workflows/ossar-analysis.yml
@@ -9,7 +9,7 @@ on:
jobs:
OSSAR-Scan:
- if: github.repository == 'coronasafe/care_fe'
+ if: github.repository == 'ohcnetwork/care_fe'
# OSSAR runs on windows-latest.
# ubuntu-latest and macos-latest support coming soon
runs-on: windows-latest
diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml
index 287cd0ad76b..ba400a9c0d3 100644
--- a/.github/workflows/stale.yml
+++ b/.github/workflows/stale.yml
@@ -6,7 +6,7 @@ on:
jobs:
stale:
runs-on: ubuntu-latest
- if: github.repository == 'coronasafe/care_fe'
+ if: github.repository == 'ohcnetwork/care_fe'
steps:
- uses: actions/stale@v6
with:
diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md
index 6469414aa5b..00e91dc5a4a 100644
--- a/CODE_OF_CONDUCT.md
+++ b/CODE_OF_CONDUCT.md
@@ -55,7 +55,7 @@ further defined and clarified by project maintainers.
## Enforcement
Instances of abusive, harassing, or otherwise unacceptable behavior may be
-reported by contacting the project team at info@coronasafe.network. All
+reported by contacting the project team at info@ohc.network. All
complaints will be reviewed and investigated and will result in a response that
is deemed necessary and appropriate to the circumstances. The project team is
obligated to maintain confidentiality with regard to the reporter of an incident.
diff --git a/README.md b/README.md
index de0b06bd63e..39a83172ddb 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
Auto deployed to care.ohc.network for develop
branch. All pull requests have preview builds powered by Netlify.