mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
Minor readme update and fixed build error.
This commit is contained in:
18
README.md
18
README.md
@@ -10,15 +10,15 @@ Welcome to IronFunctions! The open source serverless platform.
|
||||
IronFunctions is an open source serverless platform, or as we like to refer to it, Functions as a
|
||||
Service (FaaS) platform that you can run anywhere.
|
||||
|
||||
* Write once
|
||||
* [Any language](docs/faq.md#which-languages-are-supported)
|
||||
* [AWS Lambda format supported](docs/lambda/README.md)
|
||||
* [Run anywhere](docs/faq.md#where-can-i-run-ironfunctions)
|
||||
* Public cloud, hybrid, on-premise
|
||||
* [Import Lambda functions](docs/lambda/import.md) from AWS and run them wherever you want
|
||||
* [Any language](docs/faq.md#which-languages-are-supported)
|
||||
* [AWS Lambda support](docs/lambda/README.md)
|
||||
* Easy to use
|
||||
* Easy to scale
|
||||
* Written in Go
|
||||
* API Gateway built in
|
||||
* Public, private and hybrid cloud
|
||||
* [Import functions directly from Lambda](docs/lambda/import.md) and run them wherever you want
|
||||
* Easy to use [for developers](docs/README.md#for-developers)
|
||||
* Easy to manage [for operators](docs/README.md#for-operators)
|
||||
* Written in [Go](https://golang.org)
|
||||
|
||||
## What is Serverless/FaaS?
|
||||
|
||||
@@ -79,7 +79,7 @@ docker run --rm -it --name functions --privileged -v $PWD/data:/app/data -p 8080
|
||||
```
|
||||
|
||||
This will start IronFunctions in single server mode, using an embedded database and message queue. You can find all the
|
||||
configuration options [here](docs/options.md). If you are on Windows, see [windows](docs/operating/windows.md).
|
||||
configuration options [here](docs/options.md). If you are on Windows, check [here](docs/operating/windows.md).
|
||||
|
||||
### CLI tool
|
||||
|
||||
|
||||
@@ -11,7 +11,7 @@ import (
|
||||
"strings"
|
||||
"text/tabwriter"
|
||||
|
||||
"github.com/iron-io/functions_go"
|
||||
functions "github.com/iron-io/functions_go"
|
||||
"github.com/urfave/cli"
|
||||
"golang.org/x/crypto/ssh/terminal"
|
||||
)
|
||||
@@ -186,7 +186,7 @@ func (a *routesCmd) create(c *cli.Context) error {
|
||||
if image == "" {
|
||||
ff, err := findFuncfile()
|
||||
if err != nil {
|
||||
if _, ok := err.(*NotFoundError); ok {
|
||||
if _, ok := err.(*notFoundError); ok {
|
||||
return errors.New("error: image name is missing or no function file found")
|
||||
} else {
|
||||
return err
|
||||
|
||||
Reference in New Issue
Block a user