Minor readme updates.

This commit is contained in:
Travis Reeder
2016-11-15 12:56:24 -08:00
parent d65a84dac2
commit 52f64b6a40
2 changed files with 13 additions and 5 deletions

View File

@@ -135,8 +135,16 @@ fnctl apps create myapp
fnctl routes create myapp /hello
```
You can find a bunch of examples in various languages in the [examples](examples/) directory. You can also
write your functions in AWS's [Lambda format](docs/lambda/README.md).
Now you can call your function:
```sh
curl http://localhost:8080/r/myapp/hello
```
Or surf to it: http://localhost:8080/r/myapp/hello
See below for more details. And tou can find a bunch of examples in various languages in the [examples](examples/) directory. You can also
write your functions in AWS's [Lambda format](docs/lambda/README.md).
## Usage

View File

@@ -17,9 +17,9 @@ fnctl routes create myapp /hello
Now you can call your function on IronFunctions:
```sh
curl -H "Content-Type: application/json" -X POST -d @hello.payload.json http://localhost:8080/r/myapp/hello
```
```sh
curl -H "Content-Type: application/json" -X POST -d @hello.payload.json http://localhost:8080/r/myapp/hello
```
## Dependencies