Skip to content

Commit

Permalink
fix links and improve default start page.
Browse files Browse the repository at this point in the history
  • Loading branch information
lowsky committed Jan 16, 2019
1 parent c54842d commit af0e55a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
11 changes: 5 additions & 6 deletions src/__tests_/__snapshots__/Storyshots.test.js.snap
Expand Up @@ -323,7 +323,7 @@ exports[`Storyshots Pages main 1`] = `
<a
href="#localserver"
>
Run local server
How to start the local server
</a>
</i>
</li>
Expand Down Expand Up @@ -364,7 +364,7 @@ exports[`Storyshots Pages main 1`] = `
<li>
Relay based  
<a
href="./restful/lowsky/dashboard"
href="./relay/lowsky/dashboard"
>
<b>
lowsky/spotify-graphql-server
Expand All @@ -391,12 +391,11 @@ exports[`Storyshots Pages main 1`] = `
</code>
you also need to configure GitHub authentication token in the
<code>
.env
server/.env
</code>
file, then simply run the local graphql server via
file, then simply run the local graphql server via and web app via
<code>
npm start
npm run dev
</code>
</p>
</div>
Expand Down
9 changes: 5 additions & 4 deletions src/index/indexPage.js
Expand Up @@ -14,7 +14,7 @@ const indexPageContent = () => (
<li>
<b>GraphQL + Relay</b> - fetches all information from a locally installed relay server. <b>Note:</b>
<i>
This only works locally! See <a href="#localserver">Run local server</a>
This only works locally! See <a href="#localserver">How to start the local server</a>
</i>
</li>
<li>
Expand All @@ -34,7 +34,7 @@ const indexPageContent = () => (
</li>
<li>
Relay based &nbsp;
<a href="./restful/lowsky/dashboard">
<a href="./relay/lowsky/dashboard">
<b>lowsky/spotify-graphql-server</b>
</a>
&nbsp; (needs a running local server. See <a href="#localserver">setup</a>
Expand All @@ -44,8 +44,9 @@ const indexPageContent = () => (
<h4 className="is-size-4">How to start the local server</h4>
<p>
After installing the dependencies via <code>npm install</code> you also need to configure GitHub
authentication token in the <code>.env</code> file, then simply run the local graphql server via{' '}
<code>npm start</code>
authentication token in the <code>server/.env</code> file, then simply run the local graphql server via
and web app via
<code>npm run dev</code>
</p>
</div>
</div>
Expand Down

0 comments on commit af0e55a

Please sign in to comment.