mirror of
https://github.com/oceanprotocol/docs.git
synced 2024-11-26 19:49:26 +01:00
Issue-#850: Aquarius rest api
This commit is contained in:
parent
e787ff55ed
commit
7df4bad174
3
.gitignore
vendored
3
.gitignore
vendored
@ -8,4 +8,5 @@ yarn-error.log
|
|||||||
.env.*
|
.env.*
|
||||||
markdowns/
|
markdowns/
|
||||||
.vscode/
|
.vscode/
|
||||||
size-plugin.json
|
size-plugin.json
|
||||||
|
read-the-docs/
|
@ -155,7 +155,7 @@ module.exports = {
|
|||||||
options: {
|
options: {
|
||||||
name: 'repo-read-the-docs',
|
name: 'repo-read-the-docs',
|
||||||
remote: `https://github.com/oceanprotocol/readthedocs.git`,
|
remote: `https://github.com/oceanprotocol/readthedocs.git`,
|
||||||
local: 'markdowns/',
|
local: 'read-the-docs',
|
||||||
branch: 'v4',
|
branch: 'v4',
|
||||||
patterns: [
|
patterns: [
|
||||||
'markdowns/ocean-py',
|
'markdowns/ocean-py',
|
||||||
@ -167,7 +167,7 @@ module.exports = {
|
|||||||
{
|
{
|
||||||
resolve: 'gatsby-source-filesystem',
|
resolve: 'gatsby-source-filesystem',
|
||||||
options: {
|
options: {
|
||||||
path: `${__dirname}/markdowns/markdowns`,
|
path: `${__dirname}/read-the-docs/markdowns`,
|
||||||
name: 'markdowns'
|
name: 'markdowns'
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -59,7 +59,11 @@ exports.createPages = ({ graphql, actions }) => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
allRepoMarkdown: allMarkdownRemark(
|
allRepoMarkdown: allMarkdownRemark(
|
||||||
filter: { fileAbsolutePath: { regex: "/markdowns/markdowns/" } }
|
filter: {
|
||||||
|
fileAbsolutePath: {
|
||||||
|
regex: ".cache/gatsby-source-git/read-the-docs/markdowns/"
|
||||||
|
}
|
||||||
|
}
|
||||||
) {
|
) {
|
||||||
edges {
|
edges {
|
||||||
node {
|
node {
|
||||||
|
Loading…
Reference in New Issue
Block a user