1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-02-04 00:18:01 +01:00

chore: Cleaned up client SDK documentation

This commit is contained in:
Ivar Conradi Østhus 2018-11-22 20:33:28 +01:00
parent 0275906eea
commit 887bd65f12
2 changed files with 31 additions and 21 deletions

View File

@ -130,21 +130,31 @@ const UnleashClient = () => (
Unleash has offical SDK's for Java, Node.js, Go, Ruby and Python. And we will be happy to add implementations in other langugages written by you! These libraries makes it very easy to use Unleash in you application. Unleash has offical SDK's for Java, Node.js, Go, Ruby and Python. And we will be happy to add implementations in other langugages written by you! These libraries makes it very easy to use Unleash in you application.
</p> </p>
<h3>Official client SDKs:</h3> <div className="gridBlock">
<ul> <div className="blockElement twoByGridBlock">
<li><MarkdownBlock>[unleash/unleash-client-java](https://github.com/unleash/unleash-client-java)</MarkdownBlock></li> <div className="blockContent">
<li><MarkdownBlock>[unleash/unleash-client-node](https://github.com/unleash/unleash-client-node)</MarkdownBlock></li> <h3>Official client SDKs:</h3>
<li><MarkdownBlock>[unleash/unleash-client-go](https://github.com/unleash/unleash-client-go)</MarkdownBlock></li> <ul>
<li><MarkdownBlock>[unleash/unleash-client-ruby](https://github.com/unleash/unleash-client-ruby)</MarkdownBlock></li> <li><MarkdownBlock>[unleash/unleash-client-java](https://github.com/unleash/unleash-client-java)</MarkdownBlock></li>
<li><MarkdownBlock>[unleash/unleash-client-python](https://github.com/Unleash/unleash-client-python)</MarkdownBlock></li> <li><MarkdownBlock>[unleash/unleash-client-node](https://github.com/unleash/unleash-client-node)</MarkdownBlock></li>
</ul> <li><MarkdownBlock>[unleash/unleash-client-go](https://github.com/unleash/unleash-client-go)</MarkdownBlock></li>
<li><MarkdownBlock>[unleash/unleash-client-ruby](https://github.com/unleash/unleash-client-ruby)</MarkdownBlock></li>
<li><MarkdownBlock>[unleash/unleash-client-python](https://github.com/Unleash/unleash-client-python)</MarkdownBlock></li>
</ul>
</div>
</div>
<h3>Clients written by awesome enthusiasts:</h3> <div className="blockElement twoByGridBlock">
<ul> <div className="blockContent">
<li><MarkdownBlock>[stiano/unleash-client-dotnet](https://github.com/stiano/unleash-client-dotnet) (.Net Core)</MarkdownBlock></li> <h3>Clients written by awesome enthusiasts:</h3>
<li><MarkdownBlock>[onybo/unleash-client-core](https://github.com/onybo/unleash-client-core) (.Net Core)</MarkdownBlock></li> <ul>
<li><MarkdownBlock>[rarruda/unleash-client-python](https://github.com/rarruda/unleash-client-python) (Python 3)</MarkdownBlock></li> <li><MarkdownBlock>[stiano/unleash-client-dotnet](https://github.com/stiano/unleash-client-dotnet) (.Net Core)</MarkdownBlock></li>
</ul> <li><MarkdownBlock>[onybo/unleash-client-core](https://github.com/onybo/unleash-client-core) (.Net Core)</MarkdownBlock></li>
<li><MarkdownBlock>[rarruda/unleash-client-python](https://github.com/rarruda/unleash-client-python) (Python 3)</MarkdownBlock></li>
</ul>
</div>
</div>
</div>
</Container> </Container>
); );
@ -153,9 +163,9 @@ const TryOut = () => (
{[ {[
{ {
content: 'We have deployed a demo version of [Unleash on Heroku](https://unleash.herokuapp.com). '+ content: 'We have deployed a demo version of [Unleash on Heroku](https://unleash.herokuapp.com). '+
'Here you can play with the Unleash UI, define your toggles. <br /><br />'+ 'Here you can play with the Unleash UI, define some feature toggles and get a feel of how to use Unleash. <br /><br />'+
'You can even use on of the Unleash client SDKs and test it out Unleash your application. '+ 'It is even possible to use one of the Unleash client SDKs and test it out Unleash your application. '+
'Use the api url located at https://unleash.herokuapp.com/api/.', 'To do this you should connet one of the clients using the hosted API url: https://unleash.herokuapp.com/api/.',
image: imgUrl('dashboard.png'), image: imgUrl('dashboard.png'),
imageAlign: 'left', imageAlign: 'left',
align: 'left', align: 'left',
@ -191,8 +201,8 @@ const Showcase = props => {
return ( return (
<div className="productShowcaseSection paddingBottom"> <div className="productShowcaseSection paddingBottom">
<h2>Who is Using This?</h2> <h2>Who is Using Unleash?</h2>
<p>This project is used by all these people</p> <p>Unleash is used by</p>
<div className="logos">{showcase}</div> <div className="logos">{showcase}</div>
<div className="more-users"> <div className="more-users">
<a className="button" href={pageUrl('users.html', props.language)}> <a className="button" href={pageUrl('users.html', props.language)}>

View File

@ -1,6 +1,6 @@
{ {
"documentation": { "documentation": {
"Getting Started": ["getting_started", "securing_unleash", "unleash_context", "activation_strategy", "client_specification", "migration_guide"], "User documentation": ["getting_started", "client_sdk", "securing_unleash", "unleash_context", "activation_strategy", "client_specification", "migration_guide"],
"Developer Guide": ["developer_guide", "database_schema", "database_backup"], "Developer Guide": ["developer_guide", "database_schema", "database_backup"],
"Guides": ["guides/google_auth"] "Guides": ["guides/google_auth"]
}, },