Skip to content

Commit f276112

Browse files
committed
docs: remove documentation
Check out SDK documentation on the official Jexia website https://docs.jexia.com
1 parent beaea8e commit f276112

25 files changed

+11
-1801
lines changed

.circleci/config.yml

-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ jobs:
1717
path: test-results
1818
- store_artifacts:
1919
path: test-results
20-
- run: npm run docs
2120
- run: npm run build
2221
deploy:
2322
docker:
@@ -28,8 +27,6 @@ jobs:
2827
- run: npm install
2928
- run: npm run build
3029
- run: npm run semantic-release
31-
- run: npm run docs
32-
- run: npm run docs:deploy
3330

3431
workflows:
3532
version: 2

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Contribution Guide
22

3-
[First please read and abide by the Code of Conduct](https://jexia.github.io/jexia-sdk-js/additional-documentation/code-of-conduct.html).
3+
[First please read and abide by the Code of Conduct](https://github.com/jexia/jexia-sdk-js/blob/master/CODE_OF_CONDUCT.md).
44

55
## Environment
66

README.md

+9-13
Original file line numberDiff line numberDiff line change
@@ -32,28 +32,24 @@ const credentials = {
3232
};
3333

3434
jexiaSDK.jexiaClient().init(credentials, dataModule);
35+
3536
dataModule
3637
.dataset("posts")
3738
.select()
38-
.execute()
39-
.then(records => console.log("All the records:", records))
40-
.catch(error => console.error("Something wrong happened:", error));
39+
.subscribe(
40+
records => console.log("All the records:", records),
41+
error => console.error("Something wrong happened:", error)
42+
);
4143
```
4244

43-
## Developer Guide
44-
45-
### Getting Started
46-
47-
Check out the [Quick Start Guide](https://jexia.github.io/jexia-sdk-js/additional-documentation/quick-start-guide.html) for a quick guide on using the SDK in your application.
48-
49-
### Api Docs
45+
### Documentation
5046

51-
Check out the [Api Docs](https://jexia.github.io/jexia-sdk-js/) for detailed view of the JavaScript SDK Api.
47+
Check out [documentation](https://docs.jexia.com/) on the official Jexia website.
5248

5349
### Contributing
5450

55-
You can find all the steps at the [Contributing Guide](https://jexia.github.io/jexia-sdk-js/additional-documentation/code-of-conduct.html).
51+
You can find all the steps at the [Contributing Guide](https://github.com/jexia/jexia-sdk-js/blob/master/CONTRIBUTING.md).
5652

5753
## License
5854

59-
[MIT](https://jexia.github.io/jexia-sdk-js/license.html)
55+
[MIT](https://github.com/jexia/jexia-sdk-js/blob/master/LICENSE)
-16.3 KB
Binary file not shown.
-22.4 KB
Binary file not shown.
-24.7 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.

extra_docs/dataset/README.md

-301
This file was deleted.

0 commit comments

Comments
 (0)