Remove iron...

This commit is contained in:
Travis Reeder
2017-05-18 18:59:34 +00:00
committed by Reed Allman
parent 521df8c1ff
commit 9cc12b4b12
146 changed files with 406 additions and 1050 deletions

View File

@@ -11,13 +11,13 @@ fn build
./test.sh
# Push it to Docker Hub
fn push
# Create routes to this function on IronFunctions
# Create routes to this function on Oracle Functions
fn apps create <YOUR_APP> --config SERVER=<POSTGRES>
fn routes create --config TABLE=<TABLE_NAME> --config COMMAND=INSERT <YOUR_APP> /<TABLE_NAME>/insert
fn routes create --config TABLE=<TABLE_NAME> --config COMMAND=SELECT <YOUR_APP> /<TABLE_NAME>/select
```
Now you can call your function on IronFunctions:
Now you can call your function on Oracle Functions:
```
echo <JSON_RECORD> | fn call /<YOUR_APP>/<TABLE_NAME>/insert