Skip to content

Commit c46ded8

Browse files
authored
Merge pull request #32 from arso-project/dev
Dev
2 parents 0a519a4 + 4793cd6 commit c46ded8

21 files changed

+6235
-6174
lines changed

blog/2019-05-29-hello-world.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
---
2-
id: hello-world
2+
slug: hello-world
33
title: Hello
44
author: arso-project
55
author_title: coop
66
author_url: https://github.com/arso-project
7-
author_image_url:
87
tags: [hello, sonar]
98
---
109

build-with-apidocs.sh

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#!/bin/bash
2+
set -e
3+
set -v
4+
5+
if [ ! -d tmp ]; then
6+
mkdir tmp -p
7+
pushd tmp
8+
git clone https://github.com/arso-project/sonar.git
9+
pushd sonar
10+
else
11+
pushd tmp
12+
pushd sonar
13+
git pull
14+
fi
15+
yarn
16+
yarn docs:client
17+
popd
18+
popd
19+
mv tmp/sonar/packages/client/docs static/apidocs-client
20+
yarn build
21+
rm -r tmp
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ title: Client
66

77
The primary way to interact with Sonar is through the *Sonar Client*. The Client talks to the Sonar daemon over HTTP. The Sonar daemon is part of the P2P network, exchanges data with other peers and indexes the data in your islands.
88

9+
**<a href="/apidocs-client" target="_blank">API docs for the client</a>**
10+
911
## Get started
1012

1113
The client works both in browsers and in NodeJS. When using in browser, you currently need to have a bundling setup that supports CommonJS (e.g. webpack or browserify).
File renamed without changes.
File renamed without changes.

docs/apidocs-client.md

Lines changed: 0 additions & 6 deletions
This file was deleted.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)