Skip to content

Commit 89aba32

Browse files
author
Varun Malhotra
committed
Added submodule and configured it to track gh-pages
1 parent a63a432 commit 89aba32

File tree

5 files changed

+60
-2
lines changed

5 files changed

+60
-2
lines changed

.gitmodules

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[submodule "vwo-fme-node-sdk"]
2+
path = vwo-fme-node-sdk
3+
url = git@github.com:wingify/vwo-fme-node-sdk.git
4+
branch = gh-pages
5+
[submodule "docs/vwo-fme-node-sdk"]
6+
path = docs/vwo-fme-node-sdk
7+
url = git@github.com:wingify/vwo-fme-node-sdk.git

docs.markdown

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
layout: page
3+
title: Wingify Engineering Projects - Documentation
4+
description: Documentation of our public projects
5+
permalink: /docs/
6+
---
7+
8+
9+
<div class="projects">
10+
<div class="project-box">
11+
<a href="/vwo-fme-node-sdk/">
12+
<img src="/images/generic_code@2x.png" width="160" height="160">
13+
<h3>VWO FME Node SDK - Documentation</h3>
14+
</a>
15+
<p>Node.js SDK for VWO Feature Management and Experimentation</p>
16+
<span class="pill">javascript</span>
17+
</div>
18+
</div>

docs/vwo-fme-node-sdk

Submodule vwo-fme-node-sdk added at b43fc0c

gatsby-node.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ exports.createPages = ({ graphql, actions }) => {
5656

5757
const postsEdges = result.data.allMarkdownRemark.edges;
5858

59-
postsEdges.forEach((edge, index) => {
59+
postsEdges.forEach((edge, index) => {
6060
const nextID = index + 1 < postsEdges.length ? index + 1 : 0;
6161
const prevID = index - 1 >= 0 ? index - 1 : postsEdges.length - 1;
6262
const nextEdge = postsEdges[nextID];
@@ -89,7 +89,7 @@ exports.createPages = ({ graphql, actions }) => {
8989
}
9090
});
9191
});*/
92-
execSync("mkdir -p public/images && cp -R images/* public/images && cp robots.txt public/robots.txt && cp -R labs/* public/ && cp -R css public/");
92+
execSync("mkdir -p public/images && cp -R images/* public/images && cp robots.txt public/robots.txt && cp -R labs/* public/ && cp -R css public/ && cp -R docs/* public/");
9393
resolve();
9494
});
9595
});

src/pages/docs.js

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
import React from 'react'
2+
import Helmet from 'react-helmet'
3+
import Layout from '../layout'
4+
import config from '../../data/SiteConfig'
5+
import styles from '../../css/app.css' // eslint-disable-line no-unused-vars
6+
7+
const DocsPage = () => (
8+
<Layout>
9+
<main>
10+
<Helmet title={`Docs | ${config.siteTitle}`} />
11+
<h1>Wingify Engineering Projects - Documentation</h1>
12+
<h2>Documentation of our public projects</h2>
13+
<br />
14+
<div dangerouslySetInnerHTML={{
15+
__html: `
16+
<div class="projects">
17+
<div class="project-box">
18+
<a href="/vwo-fme-node-sdk/">
19+
<img src="/images/generic_code@2x.png" width="160" height="160">
20+
<h3>VWO FME Node SDK - Documentation</h3>
21+
</a>
22+
<p>Node.js SDK for VWO Feature Management and Experimentation</p>
23+
<span class="pill">javascript</span>
24+
</div>
25+
</div>
26+
` }} />
27+
<br />
28+
</main>
29+
</Layout>
30+
)
31+
32+
export default DocsPage

0 commit comments

Comments
 (0)