Skip to content

Commit

Permalink
removed old create wraps tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
krisbitney committed Oct 31, 2023
1 parent d685bad commit 9eae6ed
Show file tree
Hide file tree
Showing 33 changed files with 19 additions and 334 deletions.
43 changes: 16 additions & 27 deletions sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,43 +67,32 @@ const sidebars = {
},
{
type: 'category',
label: 'NEW Create Wraps',
label: 'Create Wraps',
items: [
'tutorials/new-create-wraps/introduction',
'tutorials/create-wraps/introduction',
{
type: 'category',
label: 'Part One',
items: [
'tutorials/new-create-wraps/part-one/project-setup',
'tutorials/new-create-wraps/part-one/project-manifest',
'tutorials/new-create-wraps/part-one/schema-and-codegen',
'tutorials/new-create-wraps/part-one/first-method',
'tutorials/new-create-wraps/part-one/import-and-subinvoke',
'tutorials/new-create-wraps/part-one/interfaces-and-plugins',
'tutorials/new-create-wraps/part-one/integration-testing',
'tutorials/new-create-wraps/part-one/deployment'
'tutorials/create-wraps/part-one/project-setup',
'tutorials/create-wraps/part-one/project-manifest',
'tutorials/create-wraps/part-one/schema-and-codegen',
'tutorials/create-wraps/part-one/first-method',
'tutorials/create-wraps/part-one/import-and-subinvoke',
'tutorials/create-wraps/part-one/interfaces-and-plugins',
'tutorials/create-wraps/part-one/integration-testing',
'tutorials/create-wraps/part-one/deployment'
]
}
],
},
{
type: 'category',
label: 'Create Wraps',
items: [
},
{
type: 'category',
label: 'Tutorial',
label: 'Part Two',
items: [
'tutorials/create-wraps/tutorial/project-setup',
'tutorials/create-wraps/tutorial/project-folder',
'tutorials/create-wraps/tutorial/build-deploy-test',
'tutorials/create-wraps/tutorial/adding-new-methods',
'tutorials/create-wraps/tutorial/writing-tests-with-workflows',
'tutorials/create-wraps/tutorial/deploy-locally-and-test',
'tutorials/create-wraps/part-two/polywrap-manifest',
'tutorials/create-wraps/part-two/default-plugins',
'tutorials/create-wraps/part-two/writing-tests-with-workflows'
]
},
'tutorials/create-wraps/polywrap-manifest',
'tutorials/create-wraps/default-plugins'
}
],
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ It is implemented by multiple plugin wraps to help the Polywrap client query dif

## Declaring an interface project

Interface projects are declared using a [Polywrap Manifest](/tutorials/create-wraps/polywrap-manifest).
Interface projects are declared using a [Polywrap Manifest](/tutorials/create-wraps/part-two/polywrap-manifest).
To indicate that a project is an abstract interface, set the project type to `interface`.

Interface projects do not have a module. Only a [schema](/concepts/wrap-schema) path is declared.
Expand Down
4 changes: 2 additions & 2 deletions src/docs/tutorials/build-and-deploy-wraps/build-pipeline.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ This article will help you understand the follow concepts:
## Build pipeline

The build process begins by running the [`build`](https://github.com/polywrap/cli/tree/origin-dev/packages/cli#build--b) command from the [`polywrap`](https://github.com/polywrap/cli/tree/origin-dev/packages/cli) CLI.
The command will first search for the [Polywrap Manifest](../create-wraps/polywrap-manifest), find the wrap schema and implementation, and move these files into a Docker image.
The command will first search for the [Polywrap Manifest](../create-wraps/part-two/polywrap-manifest), find the wrap schema and implementation, and move these files into a Docker image.

Within the docker image, the wrap schema is parsed and its contents are extracted into an ABI.
The ABI is used to generate binding code for the wrap.
Expand All @@ -31,7 +31,7 @@ The Build Manifest `polywrap.build.yaml` file is the entry point to build pipeli

### Declaration

The location of the Build Manifest must be declared in your [Polywrap Manifest](../create-wraps/polywrap-manifest) with a field labeled *build*.
The location of the Build Manifest must be declared in your [Polywrap Manifest](../create-wraps/part-two/polywrap-manifest) with a field labeled *build*.
If a custom build manifest is not declared, the default build configuration will be used.

```yml
Expand Down
64 changes: 0 additions & 64 deletions src/docs/tutorials/create-wraps/tutorial/adding-new-methods.md

This file was deleted.

56 changes: 0 additions & 56 deletions src/docs/tutorials/create-wraps/tutorial/build-deploy-test.md

This file was deleted.

This file was deleted.

42 changes: 0 additions & 42 deletions src/docs/tutorials/create-wraps/tutorial/project-folder.md

This file was deleted.

72 changes: 0 additions & 72 deletions src/docs/tutorials/create-wraps/tutorial/project-setup.md

This file was deleted.

0 comments on commit 9eae6ed

Please sign in to comment.