Skip to content

Commit 2b7950b

Browse files
authored
remove all links to Substrate Marketplace (#2147)
1 parent bac6baf commit 2b7950b

File tree

7 files changed

+2
-13
lines changed

7 files changed

+2
-13
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ Default localhost port configuration:
8686
```env
8787
GATSBY_WEBSITE_URL=http://localhost:8100
8888
GATSBY_DOCS_URL=http://localhost:8200
89-
GATSBY_MARKETPLACE_URL=http://localhost:8300
9089
GATSBY_CAREERS_URL=https://careers.substrate.io
9190
```
9291

config/menus.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const { MARKETPLACE_URL, WEBSITE_URL, CAREERS_URL } = require('./webConsts.js');
1+
const { WEBSITE_URL, CAREERS_URL } = require('./webConsts.js');
22

33
/* the main menu, ids of items must match
44
the submenu's key of this js object */
@@ -58,10 +58,6 @@ const developers = [
5858
url: 'https://paritytech.github.io/substrate/master/sc_service/',
5959
id: 'developers.rustdocs',
6060
},
61-
{
62-
url: MARKETPLACE_URL,
63-
id: 'developers.marketplace',
64-
},
6561
{
6662
url: WEBSITE_URL + '/developers/smart-contracts/',
6763
id: 'developers.smart-contracts',

config/siteMetadata.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
const menus = require('./menus.js');
2-
const { WEBSITE_URL, DOCS_URL, MARKETPLACE_URL, CAREERS_URL } = require('./webConsts.js');
2+
const { WEBSITE_URL, DOCS_URL, CAREERS_URL } = require('./webConsts.js');
33

44
module.exports = {
55
menus,
@@ -10,7 +10,6 @@ module.exports = {
1010
siteUrl: DOCS_URL,
1111
websiteUrl: WEBSITE_URL,
1212
docsUrl: DOCS_URL,
13-
marketplaceUrl: MARKETPLACE_URL,
1413
careersUrl: CAREERS_URL,
1514
author: 'Parity WebDev/W3F WebOps',
1615
pressEmail: '[email protected]',

config/webConsts.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
const WEBSITE_URL = process.env.GATSBY_WEBSITE_URL;
22
const DOCS_URL = process.env.GATSBY_DOCS_URL;
3-
const MARKETPLACE_URL = process.env.GATSBY_MARKETPLACE_URL;
43
const CAREERS_URL = process.env.GATSBY_CAREERS_URL;
54

65
module.exports = {
76
WEBSITE_URL,
87
DOCS_URL,
9-
MARKETPLACE_URL,
108
CAREERS_URL,
119
};

content/locales/en/menus.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
"developers.home": "Home",
1515
"developers.docs": "Docs",
1616
"developers.rustdocs": "Rust Docs",
17-
"developers.marketplace": "Marketplace",
1817
"developers.smart-contracts": "Smart Contracts",
1918
"developers.substrate-connect": "Substrate Connect",
2019
"developers.rococo-network": "Rococo Network",

example.env.development

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
# GATSBY_WEBSITE_URL=http://localhost:8100
22
# GATSBY_DOCS_URL=http://localhost:8200
3-
# GATSBY_MARKETPLACE_URL=http://localhost:8300
43
# GATSBY_CAREERS_URL=https://careers.substrate.io

example.env.production

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
# GATSBY_WEBSITE_URL=http://localhost:8100
22
# GATSBY_DOCS_URL=http://localhost:8200
3-
# GATSBY_MARKETPLACE_URL=http://localhost:8300
43
# GATSBY_CAREERS_URL=https://careers.substrate.io

0 commit comments

Comments
 (0)