Skip to content

Commit

Permalink
feat: linting (#4264)
Browse files Browse the repository at this point in the history
  • Loading branch information
Fran McDade authored and Fran McDade committed Nov 20, 2024
1 parent ac58c6d commit 7758370
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion site-config/hca-dcp/cc-ma-dev/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,12 @@ const BROWSER_URL =
"https://ma-pilot.explore.data.humancellatlas.dev.clevercanary.com";
const CATALOG = "dcp3";
const DATA_URL = "https://service.dev.singlecell.gi.ucsc.edu";
const GIT_HUB_REPO_URL = "https://github.com/DataBiosphere/data-browser";
const PORTAL_URL = "https://data.humancellatlas.dev.clevercanary.com";

const config: SiteConfig = {
...makeManagedAccessConfig(
makeConfig(BROWSER_URL, PORTAL_URL, DATA_URL, undefined, CATALOG)
makeConfig(BROWSER_URL, PORTAL_URL, DATA_URL, GIT_HUB_REPO_URL, CATALOG)
),
};

Expand Down
3 changes: 2 additions & 1 deletion site-config/hca-dcp/ma-dev/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@ import { makeConfig } from "../dev/config";
const BROWSER_URL = "https://explore.dev.singlecell.gi.ucsc.edu";
const CATALOG = "dcp3";
export const DATA_URL = "https://service.dev.singlecell.gi.ucsc.edu";
const GIT_HUB_REPO_URL = "https://github.com/DataBiosphere/data-browser";
export const PORTAL_URL = "https://dev.singlecell.gi.ucsc.edu";

const config: SiteConfig = {
...makeManagedAccessConfig(
makeConfig(BROWSER_URL, PORTAL_URL, DATA_URL, undefined, CATALOG)
makeConfig(BROWSER_URL, PORTAL_URL, DATA_URL, GIT_HUB_REPO_URL, CATALOG)
),
};

Expand Down
3 changes: 2 additions & 1 deletion site-config/hca-dcp/ma-prod/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@ import { getAuthenticationConfig } from "./authentication/authentication";
const BROWSER_URL = "https://explore.data.humancellatlas.org";
const CATALOG = "dcp43";
const DATA_URL = "https://service.azul.data.humancellatlas.org";
const GIT_HUB_REPO_URL = "https://github.com/DataBiosphere/data-browser";
const PORTAL_URL = "https://data.humancellatlas.org";

const config: SiteConfig = {
...makeManagedAccessConfig(
makeConfig(BROWSER_URL, PORTAL_URL, DATA_URL, undefined, CATALOG)
makeConfig(BROWSER_URL, PORTAL_URL, DATA_URL, GIT_HUB_REPO_URL, CATALOG)
),
};

Expand Down

0 comments on commit 7758370

Please sign in to comment.