For the documentation site of Iroha 2.
Install Deno.
Run:
deno run src/main.ts
With all allowances:
deno run --allow-read --allow-env --allow-net src/main.ts
Use the following request to get the parsed compatibility matrix (port depends on the configuration):
GET http://localhost:8080/compat-matrix
Either in ENV or in .env
:
ALLURE_BASE_URL
: base URL for Allure API callsALLURE_API_TOKEN
: API token to make Allure API callsPORT
(optional, default:8080
): server portLOG_LEVEL
(optional, default:INFO
): no comments
See also: .env.example
The project has Dockerfile
. Default exposed port is 4000
.
If needed remove deno.lock first
deno cache --lock=deno.lock deps.ts
There is allure_compat_matrix.livemd
- a
Livebook notebook used for prototyping of the data
flow. It can be used as a reference and as a tool for further updates. Please
refer to the Livebook documentation on how to use it if you want.