Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DCJ-678: Remove alpha json config #2684

Merged
merged 1 commit into from
Oct 9, 2024
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: NPM Install
run: npm ci
- name: Copy Configs
run: cp config/alpha.json public/config.json
run: cp config/base_config.json public/config.json
- name: NPM Build
run: CI=false npm run build --silent
- name: Cypress run integration tests
Expand Down
2 changes: 1 addition & 1 deletion DEVNOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ environment by looking at the deployed configs in https://duos-k8s.dsde-{%ENV%}.
will simulate it for local development. The installation steps outlined in this step can also be completed using the
[render-configs.sh](scripts/render-configs.sh) script which can generate all required files for local development.
```
cp config/alpha.json public/config.json
cp config/base_config.json public/config.json
```

Ensure that your `/etc/hosts` file has an entry for `local.dsde-dev.broadinstitute.org`
Expand Down
2 changes: 1 addition & 1 deletion TESTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ We use [Cypress](https://docs.cypress.io/) for testing.

Update an environment config file to test against:
```
cp config/alpha.json public/config.json
cp config/base_config.json public/config.json
```

## Run All Tests
Expand Down
13 changes: 0 additions & 13 deletions config/alpha.json

This file was deleted.

2 changes: 2 additions & 0 deletions config/base_config.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@
"env": "",
"hash": "",
"tag": "",
"bardApiUrl": "",
"apiUrl": "",
"ontologyApiUrl": "",
"terraUrl": "",
"tdrApiUrl": "",
"errorApiKey": "",
"profileUrl": "",
"nihUrl": "",
"gaId": "",
"features": {}
Expand Down
Loading