Skip to content

Commit 7f4cb87

Browse files
authored
update readme, aim links to docserver (#122)
change links from wiki to docserver
1 parent a356485 commit 7f4cb87

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ The WRITE permissions are checked both on Client and Server so they cannot “fo
7575

7676
- [Hermes page](https://www.cossacklabs.com/hermes/) and [Hermes product sheet](https://www.cossacklabs.com/files/hermes-productsheet.pdf) contain latest details about features and technical environments (supported technological stacks, databases and client sides).
7777

78-
- [Project's GitHub Wiki](https://www.github.com/cossacklabs/hermes-core/wiki) contains the ever-evolving official documentation, which contains everything from deployment guidelines to use-cases, including charts and tutorials you might find useful. It can also be found on [Cossack Labs Documentation Server's section on Hermes](https://docs.cossacklabs.com/products/hermes/).
78+
- [Cossack Labs Documentation Server's section on Hermes](https://docs.cossacklabs.com/hermes/) contains the ever-evolving official documentation, with everything from deployment guidelines to use-cases, including charts and tutorials you might find useful.
7979

8080
- Ever-evolving [Implementing Hermes-based Security Systems](https://www.cossacklabs.com/hermes/implementing-hermes-based-systems/) document describes the details of implementing Hermes-based systems in the real world.
8181

@@ -85,20 +85,20 @@ The WRITE permissions are checked both on Client and Server so they cannot “fo
8585

8686
You can build Hermes-core manually from source or install it from the available package manager.
8787

88-
- If you are running Ubuntu, Debian or CentOS, check [Installing from repository](https://github.com/cossacklabs/hermes-core/wiki/Installing-Hermes-core) page.
88+
- If you are running Ubuntu, Debian or CentOS, check [Installing from repository](https://docs.cossacklabs.com/hermes/getting-started/installing/hermes-from-repository/) page.
8989

90-
- If you want to have the latest version of Hermes-core, you can build it from sources: [Building Hermes core](https://github.com/cossacklabs/hermes-core/wiki/Building-Hermes-core).
90+
- If you want to have the latest version of Hermes-core, you can build it from sources: [Building Hermes core](https://docs.cossacklabs.com/hermes/getting-started/installing/building-hermes/).
9191

9292
## Languages
9393

9494
Hermes-core is available on C, however, client side applications are implemented on C, Python and Go:
9595

9696
| Platform | Tutorial | Code example |
9797
| :----- | :----- | :------ |
98-
| C core / C client | [Local CLI tutorial](https://github.com/cossacklabs/hermes-core/wiki/Local-CLI-example) | [docs/examples/c/mid_hermes_low_level](https://github.com/cossacklabs/hermes-core/tree/master/docs/examples/c/mid_hermes_low_level) |
99-
| C core / C client | [C tutorial](https://github.com/cossacklabs/hermes-core/wiki/C-tutorial) | [docs/examples/c](https://github.com/cossacklabs/hermes-core/tree/master/docs/examples/c) |
100-
| C core / Python client | [Python tutorial](https://github.com/cossacklabs/hermes-core/wiki/Python-tutorial) | [docs/examples/python](https://github.com/cossacklabs/hermes-core/tree/master/docs/examples/python) |
101-
| C core / Go client | [Go tutorial](https://github.com/cossacklabs/hermes-core/wiki/Go-tutorial) | [docs/examples/go](https://github.com/cossacklabs/hermes-core/tree/master/docs/examples/go) |
98+
| C core / C client | [Local CLI tutorial](https://docs.cossacklabs.com/hermes/guides/local-cli-example/) | [docs/examples/c/mid_hermes_low_level](https://github.com/cossacklabs/hermes-core/tree/master/docs/examples/c/mid_hermes_low_level) |
99+
| C core / C client | [C tutorial](https://docs.cossacklabs.com/hermes/guides/c-tutorial/) | [docs/examples/c](https://github.com/cossacklabs/hermes-core/tree/master/docs/examples/c) |
100+
| C core / Python client | [Python tutorial](https://docs.cossacklabs.com/hermes/guides/python-tutorial/) | [docs/examples/python](https://github.com/cossacklabs/hermes-core/tree/master/docs/examples/python) |
101+
| C core / Go client | [Go tutorial](https://docs.cossacklabs.com/hermes/guides/go-tutorial/) | [docs/examples/go](https://github.com/cossacklabs/hermes-core/tree/master/docs/examples/go) |
102102

103103

104104
Moreover, Hermes natively supports:
@@ -113,9 +113,9 @@ Moreover, Hermes natively supports:
113113
[Hermes itself](https://www.cossacklabs.com/hermes/) supports the following architectures: x86/x64, armv*, various Android architectures:
114114

115115
* Debian (8, 9), CentOS 7, Ubuntu (14.04, 16.04, 18.04),
116-
* macOS (10.12, 10.13, 10.14),
117-
* Android (4 - 9) / CyanogenMod 11+,
118-
* iOS (9 - 12),
116+
* macOS (10.12 - 10.15, 11),
117+
* Android (4 - 12) / CyanogenMod 11+,
118+
* iOS (10 - 15),
119119
* Docker-containers, VMs.
120120

121121
Hermes-core has limited support, only x86/x64 platforms.
@@ -124,10 +124,10 @@ Hermes-core has limited support, only x86/x64 platforms.
124124

125125
Consider checking full tutorials to understand how to add and update blocks, grant READ and UPDATE access rights to users, revoke access rights.
126126

127-
- [Usage examples](https://github.com/cossacklabs/hermes-core/wiki/Usage-examples) describe how examples work and what are the possible usages for Hermes-core.
128-
- [C tutorial](https://github.com/cossacklabs/hermes-core/wiki/C-tutorial), where both Hermes and client app are written in C.
129-
- [Python tutorial](https://github.com/cossacklabs/hermes-core/wiki/Python-tutorial), where the Hermes app is C-based, but client code runs on Python.
130-
- [Go tutorial](https://github.com/cossacklabs/hermes-core/wiki/Go-tutorial), where Hermes app is C-based, but client code runs on Go.
127+
- [Usage examples](https://docs.cossacklabs.com/hermes/what-is-hermes/#use-cases-and-industries) describe how examples work and what are the possible usages for Hermes-core.
128+
- [C tutorial](https://docs.cossacklabs.com/hermes/guides/c-tutorial/), where both Hermes and client app are written in C.
129+
- [Python tutorial](https://docs.cossacklabs.com/hermes/guides/python-tutorial/), where the Hermes app is C-based, but client code runs on Python.
130+
- [Go tutorial](https://docs.cossacklabs.com/hermes/guides/go-tutorial/), where Hermes app is C-based, but client code runs on Go.
131131

132132

133133
## GDPR, HIPAA, CCPA

0 commit comments

Comments
 (0)