Section IV - starting the service
We are now ready to start the RESTful service that will act as the data source for our DaaS platform.The web service will provide a JSON document(s) with the number of new orders by product.
There are 2 ways to start the service.
Running using
cargo run
command while developing (local service testing)
NOTE: we provide the argument
--bin myapp_reporting
because there are now multiple executables and must specify which one to run.
To stop the service, use ctrl
+ c
.
2. Running using the executable.
Whenever you use the cargo build
command, it places the created executable in the target/debug directory with the same name that was defined in the Cargo.toml
manifest.
Since it is an executable, simple run the executable from the command terminal.
Checking the web service
Let's make sure the web service is working correctly by running the following script in an available terminal.
Query number of orders for all products
Query number of orders for the
leather jacket
product
Last updated
Was this helpful?