-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- copied https://github.com/bcgov/wps-web to /web - modified api/Dockerfile to build static web content, and moved to root - renamed api/Dockerfile.dev to api/Dockerfile (updated corresponding docker-compose and makefile commands) - renamed web/Dockerfile.dev to web/Dockerfile (updated corresponding docker-compose) - created docker-compose.yml in root to start up web and api - created docker-compose-api-noreload.yml specifically for running the api on mac - modified imagestream build process by pre-generating base python image with gdal pre-installed - modified integration workflow to run tests and coverage on web in addition to api - modified sonarcloud settings to account for web and api coverage - introduced caching of node modules to speed up build - introduced caching of python modules to speed up build - added react env. variables to api project - replacing %variables% with {{jinja tags}} during npm build - updated python dependancies - cleaned up /web removing file and folders that are now redundant - renamed application from wps-api to wps (in order to bubble up naming to https://wps-prod.pathfinder.gov.bc.ca/) - removed all references to wps-api and wps-web where applicable. - updated README's somewhat (more work to be done here!) - changed backup configuration (less backups, since we don't have enough space, and removed fider) and updated documentation.
- Loading branch information
Showing
191 changed files
with
32,724 additions
and
663 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
**/.gitignore | ||
**/node_modules | ||
**/Dockerfile* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ jobs: | |
- name: Set Variables | ||
shell: bash | ||
run: | | ||
echo "::set-env name=SUFFIX::pr-${{ github.event.number }}" | ||
echo "SUFFIX=pr-${{ github.event.number }}" >> $GITHUB_ENV | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
@@ -31,7 +31,7 @@ jobs: | |
- name: Set Variables | ||
shell: bash | ||
run: | | ||
echo "::set-env name=SUFFIX::pr-${{ github.event.number }}" | ||
echo "SUFFIX=pr-${{ github.event.number }}" >> $GITHUB_ENV | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
@@ -82,6 +82,6 @@ jobs: | |
- name: ZAP Scan | ||
uses: zaproxy/[email protected] | ||
with: | ||
target: "https://wps-api-pr-${{ github.event.number }}.pathfinder.gov.bc.ca" | ||
target: "https://wps-pr-${{ github.event.number }}.pathfinder.gov.bc.ca" | ||
# Do not return failure on warnings - TODO: this has to be resolved! | ||
cmd_options: "-I" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,4 +17,4 @@ jobs: | |
# f.y.i.: ZAP Scan must be able to log an issue or it will fail. | ||
uses: zaproxy/[email protected] | ||
with: | ||
target: "https://wps-api-prod.pathfinder.gov.bc.ca/" | ||
target: "https://wps-prod.pathfinder.gov.bc.ca/" |
Oops, something went wrong.