Skip to content

Commit

Permalink
Merge pull request #469 from pacificclimate/fix-fail-loop-only
Browse files Browse the repository at this point in the history
Fix fail loops
  • Loading branch information
jameshiebert authored Dec 11, 2024
2 parents d045ae4 + 30b398c commit 0079586
Show file tree
Hide file tree
Showing 11 changed files with 663 additions and 433 deletions.
4 changes: 2 additions & 2 deletions .env
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
REACT_APP_TILECACHE_URL=https://services.pacificclimate.org/dev/mapproxy/service
REACT_APP_NCWMS_URL=http://docker-dev02.pcic.uvic.ca:30778/ncWMS/wms
REACT_APP_TILECACHE_URL=https://services.pacificclimate.org/mapproxy/service
REACT_APP_NCWMS_URL=https://beehive.pacificclimate.org/ncwms
REACT_APP_CE_ENSEMBLE_NAME=ce_files
REACT_APP_MAP_LAYER_ID_TYPE=dynamic
REACT_APP_MAP_LAYER_ID_PREFIX=x
Expand Down
2 changes: 1 addition & 1 deletion .env.development
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
REACT_APP_CE_BACKEND_URL=https://services.pacificclimate.org/dev/pcex/api
REACT_APP_CE_BACKEND_URL=https://beehive.pacificclimate.org/pcex/api
REACT_APP_CE_BASE_PATH=
3 changes: 0 additions & 3 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx lint-staged
1 change: 1 addition & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
34 changes: 34 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "firefox",
"request": "launch",
"reAttach": true,
"name": "Launch Frontend",
"url": "http://localhost:3001/",
"webRoot": "${workspaceFolder}",
"enableCRAWorkaround": true,
"pathMappings": [
{
"url": "file:///workspaces/climate-explorer-frontend",
"path": "${workspaceFolder}"
}
]
},
{
"type": "node",
"name": "vscode-jest-tests",
"request": "launch",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "test", "--runInBand"],
"args": [],
"cwd": "${workspaceFolder}",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
}
]
}
Loading

0 comments on commit 0079586

Please sign in to comment.