Skip to content

Commit

Permalink
fix the docs (#1412)
Browse files Browse the repository at this point in the history
  • Loading branch information
asim committed Oct 1, 2020
1 parent d08960c commit 5356643
Show file tree
Hide file tree
Showing 40 changed files with 0 additions and 40 deletions.
1 change: 0 additions & 1 deletion docs/getting-started/helloworld.md
Expand Up @@ -469,4 +469,3 @@ $ micro logs example-service
Value of key.subkey: val
```

{% include docs/links.html %}
1 change: 0 additions & 1 deletion docs/getting-started/installation.md
Expand Up @@ -99,4 +99,3 @@ Output
}
```

{% include docs/links.html %}
1 change: 0 additions & 1 deletion docs/resources/README.md
Expand Up @@ -39,4 +39,3 @@ A list of external resources, videos, tutorials and blog posts are below. Feel f
- [Simplifying Microservices](https://www.youtube.com/watch?v=xspaDovwk34) by Asim Aslam
- [Microservices in Go using Micro](https://www.youtube.com/watch?v=OcjMi9cXItY) by Brian Ketelsen

{% include docs/links.html %}
1 change: 0 additions & 1 deletion docs/users/README.md
Expand Up @@ -61,4 +61,3 @@ If you're using Micro, feel free to add your company
- [VXLab](https://www.vxlab.com/) - Visual programming platform
- [Wonderbly](https://www.wonderbly.com/) - Childrens book company

{% include docs/links.html %}
1 change: 0 additions & 1 deletion docs/v2/deployment/deploy-docker.md
Expand Up @@ -41,4 +41,3 @@ git clone https://github.com/micro/micro
cd micro && docker build -t micro .
```

{% include docs/links.html %}
1 change: 0 additions & 1 deletion docs/v2/deployment/deploy-kubernetes.md
Expand Up @@ -241,4 +241,3 @@ spec:
name: web-port
```

{% include docs/links.html %}
1 change: 0 additions & 1 deletion docs/v2/deployment/deploy-local.md
Expand Up @@ -45,4 +45,3 @@ To run the server
micro server
```

{% include docs/links.html %}
1 change: 0 additions & 1 deletion docs/v2/deployment/local-development.md
Expand Up @@ -27,4 +27,3 @@ micro server
micro run --server examples/greeter/srv
```

{% include docs/links.html %}
1 change: 0 additions & 1 deletion docs/v2/framework/api.md
Expand Up @@ -286,4 +286,3 @@ Path | Service | Service Path



{% include docs/links.html %}
1 change: 0 additions & 1 deletion docs/v2/framework/architecture.md
Expand Up @@ -57,4 +57,3 @@ The Micro CLI is a command line version of go-micro which provides a way of obse

Plugins are a way of adding additional functionality to the runtime. See the [overview](runtime-plugins.html).

{% include docs/links.html %}
1 change: 0 additions & 1 deletion docs/v2/framework/bot.md
Expand Up @@ -252,4 +252,3 @@ func main() {
}
```

{% include docs/links.html %}
1 change: 0 additions & 1 deletion docs/v2/framework/cli.md
Expand Up @@ -145,4 +145,3 @@ COMMANDS:
web Run the micro web app
```

{% include docs/links.html %}
1 change: 0 additions & 1 deletion docs/v2/framework/debugging.md
Expand Up @@ -58,4 +58,3 @@ To see if a service is running and responding to RPC queries
micro health [service]
```

{% include docs/links.html %}
1 change: 0 additions & 1 deletion docs/v2/framework/micro-service.md
Expand Up @@ -86,4 +86,3 @@ micro service --name helloworld --endpoint exec:///tmp/hellworld.sh
micro call -o raw helloworld .
```

{% include docs/links.html %}
1 change: 0 additions & 1 deletion docs/v2/framework/new.md
Expand Up @@ -71,4 +71,3 @@ OPTIONS:
--fqdn FQDN of service e.g com.example.srv.service (defaults to namespace.type.alias)
--alias Alias is the short name used as part of combined name if specified
```
{% include docs/links.html %}
1 change: 0 additions & 1 deletion docs/v2/framework/proxy.md
Expand Up @@ -70,4 +70,3 @@ micro proxy

All requests to helloworld will be sent to the backend at localhost:10001

{% include docs/links.html %}
1 change: 0 additions & 1 deletion docs/v2/framework/run-service.md
Expand Up @@ -39,4 +39,3 @@ Watch as your service is started, sees the file change, rebuilds and starts agai
We'll be adding the ability to send the command to run a service to the `micro runtime` service as well as
querying status, killing the service, etc.

{% include docs/links.html %}
1 change: 0 additions & 1 deletion docs/v2/framework/run.md
Expand Up @@ -88,4 +88,3 @@ OPTIONS:
- [ ] Chroot the process?


{% include docs/links.html %}
1 change: 0 additions & 1 deletion docs/v2/framework/runtime.md
Expand Up @@ -377,4 +377,3 @@ micro --registry=etcdv3 --transport=nats --broker=kafka [command]
MICRO_REGISTRY=etcdv3 MICRO_TRANSPORT=nats MICRO_BROKER=kafka micro [command]
```

{% include docs/links.html %}
1 change: 0 additions & 1 deletion docs/v2/framework/service-network.md
Expand Up @@ -73,4 +73,3 @@ MICRO_NETWORK_TOKEN=foobar micro network
Nodes must provide a valid and matching token to join the network. The default token is "go.micro.tunnel" which allows
any node to join and communicate between them.

{% include docs/links.html %}
1 change: 0 additions & 1 deletion docs/v2/framework/tunnel.md
Expand Up @@ -53,4 +53,3 @@ MICRO_TUNNEL_TOKEN=foobar go run main.go

By default the token "micro" is used allowing anyone to connect via the tunnel.

{% include docs/links.html %}
1 change: 0 additions & 1 deletion docs/v2/framework/web.md
Expand Up @@ -62,4 +62,3 @@ your service should be called; `namespace + path`.
<img src="images/web4.png">


{% include docs/links.html %}
1 change: 0 additions & 1 deletion docs/v2/guides/writing-a-go-function.md
Expand Up @@ -316,4 +316,3 @@ fmt.Println(rsp.Greeter)

The full example is can be found at [go-micro/examples/function](https://github.com/micro/examples/tree/master/function).

{% include docs/links.html %}
1 change: 0 additions & 1 deletion docs/v2/guides/writing-a-go-service.md
Expand Up @@ -303,4 +303,3 @@ fmt.Println(rsp.Greeting)

The full example is can be found at [go-micro/examples/service](https://github.com/micro/examples/tree/master/service).

{% include docs/links.html %}
1 change: 0 additions & 1 deletion docs/v2/library/README.md
Expand Up @@ -104,4 +104,3 @@ go get ./...

Go checkout the [hello world](helloworld.html) example to get started

{% include docs/links.html %}
1 change: 0 additions & 1 deletion docs/v2/library/go-api.md
Expand Up @@ -115,4 +115,3 @@ The web handler is a http reverse proxy with built in service discovery and web
- Resolver: Path is used to resolve service name


{% include docs/links.html %}
1 change: 0 additions & 1 deletion docs/v2/library/go-config.md
Expand Up @@ -406,4 +406,3 @@ it can later be merged by the reader.
In some cases source data may not actually be key-value so it's easier to represent it as bytes and defer decoding to
the reader.

{% include docs/links.html %}
1 change: 0 additions & 1 deletion docs/v2/library/go-errors.md
Expand Up @@ -64,4 +64,3 @@ if err != nil {
}
```

{% include docs/links.html %}
1 change: 0 additions & 1 deletion docs/v2/library/go-examples.md
Expand Up @@ -25,4 +25,3 @@ If you want a complet end to end example have a look at the [greeter](https://gi
This includes the backend service, api and web apps. It will also show you how to run the micro api and web services.


{% include docs/links.html %}
1 change: 0 additions & 1 deletion docs/v2/library/go-grpc.md
Expand Up @@ -99,4 +99,3 @@ The micro gRPC plugins seamlessly integrates with the gRPC ecosystem. This means

Find an example greeter api at [examples/grpc/gateway](https://github.com/micro/examples/tree/master/grpc/gateway).

{% include docs/links.html %}
1 change: 0 additions & 1 deletion docs/v2/library/go-interfaces.md
Expand Up @@ -99,4 +99,3 @@ a higher level abstraction which allows us to switch out communication mechanism
supports bidirectional streaming. This is powerful for client side push to the server.


{% include docs/links.html %}
1 change: 0 additions & 1 deletion docs/v2/library/go-options.md
Expand Up @@ -83,4 +83,3 @@ store := service.Options().Store
```


{% include docs/links.html %}
1 change: 0 additions & 1 deletion docs/v2/library/go-plugins.md
Expand Up @@ -113,4 +113,3 @@ type Registry interface {

Browse [go-plugins](https://github.com/micro/go-plugins) to get a better idea of implementation details.

{% include docs/links.html %}
1 change: 0 additions & 1 deletion docs/v2/library/go-pubsub.md
Expand Up @@ -48,4 +48,3 @@ micro.RegisterSubscriber("events", ProcessEvent)

See [examples/pubsub](https://github.com/micro/examples/tree/master/pubsub) for a complete example.

{% include docs/links.html %}
1 change: 0 additions & 1 deletion docs/v2/library/go-web.md
Expand Up @@ -108,5 +108,4 @@ service := web.NewService(
```

{% include docs/links.html %}

1 change: 0 additions & 1 deletion docs/v2/library/go-wrappers.md
Expand Up @@ -75,4 +75,3 @@ service := micro.NewService(
)
```

{% include docs/links.html %}
1 change: 0 additions & 1 deletion docs/v2/plugins/plugins-framework.md
Expand Up @@ -150,4 +150,3 @@ micro --registry=etcdv3 --transport=nats --broker=kafka
The go-micro plugins can be found in [github.com/micro/go-plugins](https://github.com/micro/go-plugins).


{% include docs/links.html %}
1 change: 0 additions & 1 deletion docs/v2/plugins/plugins-nats.md
Expand Up @@ -300,4 +300,3 @@ to the community.

Find the source for the NATS plugins at [github.com/micro/go-plugins](https://github.com/micro/go-plugins).

{% include docs/links.html %}
1 change: 0 additions & 1 deletion docs/v2/plugins/plugins-runtime.md
Expand Up @@ -95,4 +95,3 @@ go build -o micro ./main.go ./plugin.go

The plugins for the toolkit can be found in [github.com/micro/go-plugins/micro](https://github.com/micro/go-plugins/tree/master/micro).

{% include docs/links.html %}
1 change: 0 additions & 1 deletion docs/v2/plugins/plugins.md
Expand Up @@ -80,4 +80,3 @@ Browse [go-plugins](https://github.com/micro/go-plugins) to get a better idea of
The open source plugins can be found at [github.com/micro/go-plugins](https://github.com/micro/go-plugins).


{% include docs/links.html %}

0 comments on commit 5356643

Please sign in to comment.