This is an automated email from the ASF dual-hosted git repository. kittohoward pushed a commit to branch dta/overview in repository https://gitbox.apache.org/repos/asf/incubator-milagro.git
commit 519c5510ddb30af35192014ea76f0aa99c04eab1 Author: howardkitto <[email protected]> AuthorDate: Tue Aug 20 15:18:20 2019 +0100 updated link to open api spec --- docs/dta-details/quickstart.md | 6 ++++-- website/static/swagger/index.html | 4 ++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/docs/dta-details/quickstart.md b/docs/dta-details/quickstart.md index f0e89f6..f11ea25 100644 --- a/docs/dta-details/quickstart.md +++ b/docs/dta-details/quickstart.md @@ -6,10 +6,10 @@ sidebar_label: Quick Start Milagro DTA is designed to be built into the workflow of any organisation that needs to trust another organisation to manage encryption keys. It provides a [simple REST api](/swagger/index.html) "out-of-the-box" that can easily be integrated with an existing back office system, called from a front-end application or called from CURL, Postman, Swagger etc. ## Install AMCL -Milagro D-TA uses the Apache Milagrio Cryptography Library. Before install D-TA AMCL must be installed. +Milagro D-TA uses the Apache Milagrio Cryptography Library, so this must installed first ``` -git clone [email protected]:apache/incubator-milagro-crypto-c.git +git clone https://github.com/apache/incubator-milagro-crypto-c.git cd incubator-milagro-crypto-c @@ -17,6 +17,8 @@ mkdir build cd build +brew install cmake (or apt install cmake) + cmake -D CMAKE_BUILD_TYPE=Release -D BUILD_SHARED_LIBS=ON -D AMCL_CHUNK=64 -D AMCL_CURVE="BLS383" AMCL_CURVE="BLS381" AMCL_CURVE="SECP256K1" -D AMCL_RSA="" -D BUILD_PYTHON=OFF -D BUILD_WCC=OFF -D BUILD_MPIN=ON -D BUILD_X509=OFF -D CMAKE_INSTALL_PREFIX=/usr/local .. sudo make install diff --git a/website/static/swagger/index.html b/website/static/swagger/index.html index 15c64da..27eaea1 100755 --- a/website/static/swagger/index.html +++ b/website/static/swagger/index.html @@ -39,8 +39,8 @@ window.onload = function() { // Begin Swagger UI call region const ui = SwaggerUIBundle({ - url: "https://raw.githubusercontent.com/apache/incubator-milagro-dta/master/open-api.yaml", - url: "./encryptastring-api.yaml", + url: "https://raw.githubusercontent.com/apache/incubator-milagro-dta/howardkitto-patch-1/open-api.yaml", + // url: "./encryptastring-api.yaml", // url: "./open-api.yaml", // url: "dta-api.yaml", // url: "btc-api.yaml",
