-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from vannizhang/master
Add Sentinel-2 Explorer
- Loading branch information
Showing
750 changed files
with
30,208 additions
and
40,816 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 |
---|---|---|
@@ -1,2 +1,31 @@ | ||
# Custom hostname for starting the Webpack Dev server | ||
WEBPACK_DEV_SERVER_HOSTNAME = my-custome-hostname.com | ||
# This is useful when you want to access the Webpack Dev server from a different hostname | ||
WEBPACK_DEV_SERVER_HOSTNAME = my-custome-hostname.com | ||
|
||
# Specifies the service tier for the application, either development or production | ||
# This is used to determine which service proxy URL to use | ||
SERVICE_TIER = development | ||
|
||
# Service proxy URL for Landsat-Level-2 in development environment | ||
# You can ignore this if you are not running the Landsat Explorer app | ||
LANDSAT_SERVICE_PROXY_URL_DEV = https://dev.landsat.service.proxy.url | ||
|
||
# Service proxy URL for Landsat-Level-2 in production environment | ||
# You can ignore this if you are not running the Landsat Explorer app | ||
LANDSAT_SERVICE_PROXY_URL_PROD = https://prod.landsat.service.proxy.url | ||
|
||
# Service proxy URL for Sentinel-2 in development environment | ||
# You can ignore this if you are not running the Sentinel-2 Explorer app | ||
SENTINEL2_SERVICE_PROXY_URL_DEV = https://dev.sentinel2.service.proxy.url | ||
|
||
# Service proxy URL for Sentinel-2 in production environment | ||
# You can ignore this if you are not running the Sentinel-2 Explorer app | ||
SENTINEL2_SERVICE_PROXY_URL_PROD = https://prod.sentinel2.service.proxy.url | ||
|
||
# Service proxy URL for Sentinel-1 in development environment | ||
# You can ignore this if you are not running the Sentinel-1 Explorer app | ||
SENTINEL1_SERVICE_PROXY_URL_DEV = https://dev.sentinel1.service.proxy.url | ||
|
||
# Service proxy URL for Sentinel-1 in production environment | ||
# You can ignore this if you are not running the Sentinel-1 Explorer app | ||
SENTINEL1_SERVICE_PROXY_URL_PROD = https://prod.sentinel1.service.proxy.url |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -1,5 +1,10 @@ | ||
jest.mock("nanoid", () => { | ||
return { | ||
nanoid : jest.fn(() => 'abc') | ||
nanoid: jest.fn() | ||
.mockImplementationOnce(() => '1') | ||
.mockImplementationOnce(() => '2') | ||
.mockImplementationOnce(() => '3') | ||
.mockImplementationOnce(() => '4') | ||
.mockImplementationOnce(() => '5') | ||
} | ||
}); |
Oops, something went wrong.