Skip to content
Closed
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
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,7 @@
"ui-assets": "copy-aragon-ui-assets -n aragon-ui ./build",
"start": "node scripts/start",
"start:local": "node scripts/launch-local",
"start:with:profiles": "cross-env WITH_PROFILES=true node scripts/start",
"start:mainnet": "cross-env REACT_APP_ETH_NETWORK_TYPE=main npm start",
"start:rinkeby": "npm start",
"start:staging": "cross-env REACT_APP_ENS_REGISTRY_ADDRESS=0xfe03625ea880a8cba336f9b5ad6e15b0a3b5a939 npm start",
Expand Down
2 changes: 2 additions & 0 deletions src/repo-utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,5 @@ export const KNOWN_ICONS = new Map([
export function isKnownRepo(appId) {
return KNOWN_ICONS.has(appId)
}

export const withProfiles = process.env.WITH_PROFILES || false