Extended shopping logic examples from Clara Rules.
Adds modifications to the original examples to provide more detail and make it real-world.
The original examples can be found at https://github.com/cerner/clara-examples
curl --request POST \
--url http://localhost:3000/ \
--header 'content-type: application/json' \
--data '[
{
"fact-type": "Customer",
"status": "vip"
},
{
"fact-type": "ShippingAddress",
"name": "",
"address1": "",
"address2": "",
"city": "",
"company": "",
"phone": "",
"region": "",
"postal": "",
"country": "ca",
"is-commercial": "",
"is-billing-default": true,
"is-shipping-default": true,
"metafields": []
},
{
"fact-type": "SelectedShippingMethod",
"id": "free"
},
{
"fact-type": "Order",
"timestamp": "2018-10-30T01:37:23.425Z",
"attributes": {
}
},
{
"fact-type": "OrderLineItem",
"sku": "foo",
"cost": 4,
"attributes": {
"brand": "Foomakers"
}
},
{
"fact-type": "OrderLineItem",
"sku": "fizzbuzz",
"cost": 10,
"attributes": {
"flammable": true
}
},
{
"fact-type": "OrderLineItem",
"sku": "firecracker",
"cost": 1,
"attributes": {
"isExplosive": "kaboom",
"shippingSurcharge": 50
}
},
{
"fact-type": "OrderLineItem",
"sku": "north-face-jacket",
"cost": 250.00,
"attributes": {
"brand": "NorthFace",
"shippingSurcharge": 0
}
}
])'
To begin developing, start with a REPL.
docker-compose run --rm --service-ports web bin/dev
Then load the development namespace.
user=> (dev)
:loaded
When you make changes to your source files, use refresh
to reload any
modified files.
dev=> (refresh)
:loaded
Copyright 2016 Cerner Innovation, Inc.
Copyright 2018 Ticean Bennett
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.