From abe09a26c7f5124e73eae7abce258cd41192eae9 Mon Sep 17 00:00:00 2001 From: Alexander Shapiotko Date: Tue, 31 Jan 2017 21:58:00 +0200 Subject: [PATCH] docs for functions ui (#504) * docs for functions ui * update readme --- README.md | 8 ++++++++ docs/README.md | 1 + docs/operating/ui.md | 9 +++++++++ 3 files changed, 18 insertions(+) create mode 100644 docs/operating/ui.md 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