forked from subsquid/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathredirectRules.js
148 lines (147 loc) · 4.02 KB
/
redirectRules.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
const urlList = [
{
"to": "/basics/overview",
"from": "/overview"
},
{
"from": "/develop-a-squid",
"to": "/basics"
},
{
"from": "/develop-a-squid/evm-processor",
"to": "/evm-indexing"
},
{
"from": "/develop-a-squid/substrate-processor",
"to": "/substrate-indexing"
},
{
"from": "/develop-a-squid/examples",
"to": "/examples"
},
{
"from": "/develop-a-squid/schema-file",
"to": "/basics/store/postgres/schema-file"
},
{
"from": "/schema-file",
"to": "/basics/store/postgres/schema-file"
},
{
"from": "/develop-a-squid/graphql-api",
"to": "/graphql-api"
},
{
"from": "/develop-a-squid/typegen/squid-substrate-typegen",
"to": "/firesquid/substrate-indexing/squid-substrate-typegen"
},
{
"from": "/develop-a-squid/typegen/squid-evm-typegen",
"to": "/evm-indexing/squid-evm-typegen"
},
{
"from": "/develop-a-squid/evm-processor/configuration",
"to": "/evm-indexing/configuration"
},
{
"from": "/evm-indexing/data-mapping",
"to": "/evm-indexing/context-interfaces"
},
{
"from": "/evm-indexing/store-interface",
"to": "/basics/store"
},
{
"from": "/substrate-indexing/data-handlers",
"to": "/firesquid/substrate-indexing/context-interfaces"
},
{
"from": "/substrate-indexing/store-interface",
"to": "/basics/store"
},
{
"from": "/substrate-indexing/data-subscriptions",
"to": "/firesquid/substrate-indexing/configuration"
},
{
"from": "/archives/archive-registry",
"to": "/archives/overview"
},
{
"from": "/archives/archives-advanced-setup",
"to": "/archives/substrate/self-hosted"
},
{
"from": "/archives/archives-explorer-api",
"to": "/archives/substrate/archives-explorer-api"
},
{
"from": "/run-squid",
"to": "/archives/substrate/self-hosted"
},
{
"from": "/run-squid/run-in-docker",
"to": "/deploy-squid/self-hosting"
},
{
"from": "/run-squid/run-in-production",
"to": "/deploy-squid/self-hosting"
},
{
"from": "/substrate-indexing/squid-substrate-typegen",
"to": "/firesquid/substrate-indexing/squid-substrate-typegen"
},
{
"from": "/substrate-indexing/storage-state-calls",
"to": "/firesquid/substrate-indexing/storage-state-calls"
},
{
"from": "/substrate-indexing/context-interfaces",
"to": "/firesquid/substrate-indexing/context-interfaces"
},
{
"from": "/substrate-indexing/configuration",
"to": "/firesquid/substrate-indexing/configuration"
},
{
"from": "/basics/store/typeorm-store",
"to": "/basics/store/postgres/typeorm-store"
},
{
"from": "/basics/schema-file",
"to": "/basics/store/postgres/schema-file"
},
{
"from": "/basics/schema-file/intro",
"to": "/basics/store/postgres/schema-file/intro"
},
{
"from": "/basics/schema-file/entities",
"to": "/basics/store/postgres/schema-file/entities"
},
{
"from": "/basics/schema-file/indexes-and-constraints",
"to": "/basics/store/postgres/schema-file/indexes-and-constraints"
},
{
"from": "/basics/schema-file/entity-relations",
"to": "/basics/store/postgres/schema-file/entity-relations"
},
{
"from": "/basics/schema-file/unions-and-typed-json",
"to": "/basics/store/postgres/schema-file/unions-and-typed-json"
},
{
"from": "/basics/schema-file/interfaces",
"to": "/basics/store/postgres/schema-file/interfaces"
},
{
"from": "/basics/db-migrations",
"to": "/basics/store/postgres/db-migrations"
},
{
"from": "/squid-cli/redeploy",
"to": "/squid-cli/restart"
}
]
module.exports.urlList = urlList;