diff --git a/README.md b/README.md index 25fdfd730..791345831 100644 --- a/README.md +++ b/README.md @@ -274,6 +274,14 @@ If you watch the logs, you will see the function actually runs in the background Read more on [logging](docs/logging.md). +## Functions UI + +```sh +docker run --rm -it --link functions:api -p 4000:4000 -e "API_URL=http://api:8080" iron/functions-ui +``` + +For more information, see: https://github.com/iron-io/functions-ui + ## Writing Functions See [Writing Functions](docs/writing.md). diff --git a/docs/README.md b/docs/README.md index 83049d818..c406cd896 100644 --- a/docs/README.md +++ b/docs/README.md @@ -24,6 +24,7 @@ If you are operating IronFunctions, this section is for you. * [Running in Production Overview](operating/production.md) * [Databases](databases/README.md) * [Message Queues](mqs/README.md) +* [UI](operating/ui.md) * [Logging](operating/logging.md) * [Metrics](operating/metrics.md) * [Triggers](operating/triggers.md) diff --git a/docs/operating/ui.md b/docs/operating/ui.md new file mode 100644 index 000000000..7bff2a7bc --- /dev/null +++ b/docs/operating/ui.md @@ -0,0 +1,9 @@ +# User Interface for IronFunctions + +### Run Functions UI + +```sh +docker run --rm -it --link functions:api -p 4000:4000 -e "API_URL=http://api:8080" iron/functions-ui +``` + +For more information, see: https://github.com/iron-io/functions-ui