Skip to content

Commit

Permalink
Merge 17b17a5 into 91a37dc
Browse files Browse the repository at this point in the history
  • Loading branch information
bschrammIBM committed Feb 2, 2019
2 parents 91a37dc + 17b17a5 commit 9445ebd
Show file tree
Hide file tree
Showing 6 changed files with 234 additions and 54 deletions.
29 changes: 29 additions & 0 deletions docs/site/Contribution1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
lang: en
title: Contribution 1
keywords: LoopBack 4.0
sidebar: lb4_sidebar
permalink: /doc/en/lb4/Conftibution1.html
---

The LoopBack Community has created these projects:

- **[rpc-server](https://github.com/strongloop/loopback-next/tree/master/examples/rpc-server)**:
An example showing how to implement a made-up RPC protocol.

You can download any of the example projects using our CLI tool `lb4`:

```sh
$ lb4 example
? What example would you like to clone? (Use arrow keys)
> todo: Tutorial example on how to build an application with LoopBack 4.
todo-list: Continuation of the todo example using relations in LoopBack 4.
hello-world: A simple hello-world Application using LoopBack 4.
log-extension: An example extension project for LoopBack 4.
rpc-server: A basic RPC server using a made-up protocol.
soap-calculator: An example on how to integrate SOAP web services.
```

Please follow the instructions in
[Install LoopBack4 CLI](Getting-started.md#install-loopback-4-cli) if you don't
have `lb4` installed yet.
29 changes: 29 additions & 0 deletions docs/site/Contributions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
lang: en
title: Contributions from the LoopBack Community
keywords: LoopBack 4.0
sidebar: lb4_sidebar
permalink: /doc/en/lb4/Conftibutions.html
---

The LoopBack Community has created these projects:

- **[rpc-server](https://github.com/strongloop/loopback-next/tree/master/examples/rpc-server)**:
An example showing how to implement a made-up RPC protocol.

You can download any of the example projects using our CLI tool `lb4`:

```sh
$ lb4 example
? What example would you like to clone? (Use arrow keys)
> todo: Tutorial example on how to build an application with LoopBack 4.
todo-list: Continuation of the todo example using relations in LoopBack 4.
hello-world: A simple hello-world Application using LoopBack 4.
log-extension: An example extension project for LoopBack 4.
rpc-server: A basic RPC server using a made-up protocol.
soap-calculator: An example on how to integrate SOAP web services.
```

Please follow the instructions in
[Install LoopBack4 CLI](Getting-started.md#install-loopback-4-cli) if you don't
have `lb4` installed yet.
29 changes: 29 additions & 0 deletions docs/site/Example1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
lang: en
title: Examples
keywords: LoopBack 4.0
sidebar: lb4_sidebar
permalink: /doc/en/lb4/Examples.html
---

LoopBack 4 comes with the following example projects:

- **[rpc-server](https://github.com/strongloop/loopback-next/tree/master/examples/rpc-server)**:
An example showing how to implement a made-up RPC protocol.

You can download any of the example projects usig our CLI tool `lb4`:

```sh
$ lb4 example
? What example would you like to clone? (Use arrow keys)
> todo: Tutorial example on how to build an application with LoopBack 4.
todo-list: Continuation of the todo example using relations in LoopBack 4.
hello-world: A simple hello-world Application using LoopBack 4.
log-extension: An example extension project for LoopBack 4.
rpc-server: A basic RPC server using a made-up protocol.
soap-calculator: An example on how to integrate SOAP web services.
```

Please follow the instructions in
[Install LoopBack4 CLI](Getting-started.md#install-loopback-4-cli) if you don't
have `lb4` installed yet.
29 changes: 29 additions & 0 deletions docs/site/Examples.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
---
lang: en
title: Examples
keywords: LoopBack 4.0
sidebar: lb4_sidebar
permalink: /doc/en/lb4/Examples.html
---

LoopBack 4 comes with the following example projects:

- **[rpc-server](https://github.com/strongloop/loopback-next/tree/master/examples/rpc-server)**:
An example showing how to implement a made-up RPC protocol.

You can download any of the example projects usig our CLI tool `lb4`:

```sh
$ lb4 example
? What example would you like to clone? (Use arrow keys)
> todo: Tutorial example on how to build an application with LoopBack 4.
todo-list: Continuation of the todo example using relations in LoopBack 4.
hello-world: A simple hello-world Application using LoopBack 4.
log-extension: An example extension project for LoopBack 4.
rpc-server: A basic RPC server using a made-up protocol.
soap-calculator: An example on how to integrate SOAP web services.
```

Please follow the instructions in
[Install LoopBack4 CLI](Getting-started.md#install-loopback-4-cli) if you don't
have `lb4` installed yet.
41 changes: 41 additions & 0 deletions docs/site/Tutorials.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
---
lang: en
title: Tutorials
keywords: LoopBack 4.0
sidebar: lb4_sidebar
permalink: /doc/en/lb4/Tutorials.html
---

LoopBack 4 comes with the following tutorials:

- **[hello-world](https://github.com/strongloop/loopback-next/tree/master/examples/hello-world)**:
Tutorial on setting up a simple hello-world application using LoopBack 4.

- **[todo](todo-tutorial.md)**: Tutorial on building a simple application with
LoopBack 4 key concepts using bottom-up approach.

- **[todo-list](todo-list-tutorial.md)**: Tutorial on introducing related models
and building their API from the Todo tutorial

- **[log-extension](https://github.com/strongloop/loopback-next/tree/master/examples/log-extension)**:
Tutorial on building a log extension.

- **[soap-calculator](soap-calculator-tutorial.md)**: Tutorial on integrating
SOAP web services.

You can download any of the tutorial projects using our CLI tool `lb4`:

```sh
$ lb4 example
? What example would you like to clone? (Use arrow keys)
> todo: Tutorial example on how to build an application with LoopBack 4.
todo-list: Continuation of the todo example using relations in LoopBack 4.
hello-world: A simple hello-world Application using LoopBack 4.
log-extension: An example extension project for LoopBack 4.
rpc-server: A basic RPC server using a made-up protocol.
soap-calculator: An example on how to integrate SOAP web services.
```

Please follow the instructions in
[Install LoopBack4 CLI](Getting-started.md#install-loopback-4-cli) if you don't
have `lb4` installed yet.
131 changes: 77 additions & 54 deletions docs/site/sidebars/lb4_sidebar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,84 +20,107 @@ children:
output: 'web, pdf'
children:

- title: 'Todo Tutorial'
url: todo-tutorial.html
- title: 'Tutorials'
url: Tutorials.html
output: 'web, pdf'
children:

- title: 'Create your app scaffolding'
url: todo-tutorial-scaffolding.html
- title: 'Todo Tutorial'
url: todo-tutorial.html
output: 'web, pdf'
children:

- title: 'Add the Todo model'
url: todo-tutorial-model.html
output: 'web, pdf'
- title: 'Create your app scaffolding'
url: todo-tutorial-scaffolding.html
output: 'web, pdf'

- title: 'Add a Datasource'
url: todo-tutorial-datasource.html
output: 'web, pdf'
- title: 'Add the Todo model'
url: todo-tutorial-model.html
output: 'web, pdf'

- title: 'Add a Repository'
url: todo-tutorial-repository.html
output: 'web, pdf'
- title: 'Add a Datasource'
url: todo-tutorial-datasource.html
output: 'web, pdf'

- title: 'Add a Controller'
url: todo-tutorial-controller.html
output: 'web, pdf'
- title: 'Add a Repository'
url: todo-tutorial-repository.html
output: 'web, pdf'

- title: 'Putting it all together'
url: todo-tutorial-putting-it-together.html
output: 'web, pdf'
- title: 'Add a Controller'
url: todo-tutorial-controller.html
output: 'web, pdf'

- title: 'Bonus: Integrate with a geo-coding service'
url: todo-tutorial-geocoding-service.html
output: 'web, pdf'
- title: 'Putting it all together'
url: todo-tutorial-putting-it-together.html
output: 'web, pdf'

- title: 'TodoList Tutorial'
url: todo-list-tutorial.html
output: 'web, pdf'
children:
- title: 'Bonus: Integrate with a geo-coding service'
url: todo-tutorial-geocoding-service.html
output: 'web, pdf'

- title: 'Add TodoList Model'
url: todo-list-tutorial-model.html
- title: 'TodoList Tutorial'
url: todo-list-tutorial.html
output: 'web, pdf'
children:

- title: 'Add TodoList Repository'
url: todo-list-tutorial-repository.html
output: 'web, pdf'
- title: 'Add TodoList Model'
url: todo-list-tutorial-model.html
output: 'web, pdf'

- title: 'Add TodoList Controller'
url: todo-list-tutorial-controller.html
output: 'web, pdf'
- title: 'Add TodoList Repository'
url: todo-list-tutorial-repository.html
output: 'web, pdf'

- title: 'SOAP Web Service Tutorial'
url: soap-calculator-tutorial.html
output: 'web, pdf'
children:
- title: 'Add TodoList Controller'
url: todo-list-tutorial-controller.html
output: 'web, pdf'

- title: 'SOAP Web Service Overview'
url: soap-calculator-tutorial-web-service-overview.html
- title: 'SOAP Web Service Tutorial'
url: soap-calculator-tutorial.html
output: 'web, pdf'
children:

- title: 'App scaffolding'
url: soap-calculator-tutorial-scaffolding.html
output: 'web, pdf'
- title: 'SOAP Web Service Overview'
url: soap-calculator-tutorial-web-service-overview.html
output: 'web, pdf'

- title: 'Add a Datasource'
url: soap-calculator-tutorial-add-datasource.html
output: 'web, pdf'
- title: 'App scaffolding'
url: soap-calculator-tutorial-scaffolding.html
output: 'web, pdf'

- title: 'Add a Service'
url: soap-calculator-tutorial-add-service.html
output: 'web, pdf'
- title: 'Add a Datasource'
url: soap-calculator-tutorial-add-datasource.html
output: 'web, pdf'

- title: 'Add a Controller'
url: soap-calculator-tutorial-add-controller.html
- title: 'Add a Service'
url: soap-calculator-tutorial-add-service.html
output: 'web, pdf'

- title: 'Add a Controller'
url: soap-calculator-tutorial-add-controller.html
output: 'web, pdf'

- title: 'Run and Test it'
url: soap-calculator-tutorial-run-and-test.html
output: 'web, pdf'

- title: 'Examples'
url: Examples.html
output: 'web, pdf'
children:

- title: 'Run and Test it'
url: soap-calculator-tutorial-run-and-test.html
- title: 'Example1'
url: Exanple1.html
output: 'web, pdf'

- title: 'Contributions from the LoopBack Community'
url: Contributions.html
output: 'web, pdf'
children:

- title: 'Contribution1'
url: Contribution1.html
output: 'web, pdf'

- title: 'Key concepts'
url: Concepts.html
Expand Down Expand Up @@ -244,7 +267,7 @@ children:
url: Calling-other-APIs-and-web-services.html
output: 'web, pdf'

- title: 'For current LoopBack users'
- title: 'For LoopBack 3.x users'
url: LoopBack-3.x.html
output: 'web, pdf'

Expand Down

0 comments on commit 9445ebd

Please sign in to comment.