Morphir is a library of tools that works to capture business logic as data.
For the first time, business logic can be shared, stored, translated and visualised, all with the reliability of standardisation ensured in the Morphir framework.
Provides Scala language bindings and JVM based tooling for Morphir.
The Morphir desktop and web UI now lives at finos/morphir-ui.
morphir-scala continues as the Scala implementation and capability provider behind it — for
example the Markdown tooling (morphir/langkit/markdown) and the GitHub connector
(morphir/connector/github) — and as the shared morphir-ui library (morphir/ui) behind the
local web host started by morphir server.
You can install the morphir-cli in the following ways:
Using Coursier
cs install --channel https://raw.githubusercontent.com/finos/morphir-scala/main/coursier-channel.json morphir-cli
Then run the CLI:
morphir-cli setup
We also offer an insiders channel that grants access to snapshot releases of the CLI.
cs install --channel https://raw.githubusercontent.com/finos/morphir-scala/main/coursier-channel.json morphir-insiders-cli
Then run the CLI:
morphir-cli setup
NOTE: The main channel above (non-insiders), also offers insiders builds under the name morphir-insiders-cli:
cs install --channel https://raw.githubusercontent.com/finos/morphir-scala/main/coursier-channel.json morphir-insiders-cli
Then run the CLI:
morphir-insiders-cli setup
Click the button below to start a new development environment and start contributing right away:
Morphir-jvm use mill as its build tool.
If you are using IntelliJ IDEA to edit morphir-jvm's Scala code, you can create the IntelliJ project files via:
./mill mill.idea.GenIdea/ideaIf you are using Visual Studio Code, IntelliJ, or any of the Editors which support BSP you can also generate BSP config files via:
./mill mill.bsp.BSP/install
You can also try the following to use the mill-contrib-bloop plugin to install and use the Bloop based BSP setup.
NOTE: The recommended BSP based setup for mill is to run:
./mill mill.bsp.BSP/installas mentioned above.
./mill __.testor in watch mode:
./mill -w __.testNOTE: When running tests you will want to ensure you have generated the MorphirIR for elm sources if you are running tests for the runtime. A simple way to do this is to use the
build.shhelper script an invoke theelm-buildoption../build.sh elm-build
For your convience, you can run the morphir-runtime tests using the following command:
./build.sh test-runtime-jvmBefore checking test coverage, ensure that all tests have been run using the following command:
./mill __.testTo generate a human-readable coverage report, run the following command:
./mill scoverage.htmlReportAllTo view the resulting coverage report, open out/scoverage/htmlReportAll.dest/index.html
To generate an XML coverage report, run the following command:
./mill scoverage.xmlReportAllThe report will be generated at this location out/scoverage/xmlReportAll.dest/scoverage.xml
Code needs to be formatted according to scalafmt rules. Mill owns the entrypoint:
./mill format --kind scalaFor a few known files (preferred during iteration):
./mill format --paths path/to/File.scalaor git-touched paths:
./mill format --changedSee CONTRIBUTING.md — Formatting for the full command table (--sources, --check, etc.).
Elm sources under examples/morphir-elm-projects and morphir-elm are formatted with the repo-pinned elm-format binary via Mill (no global npm install -g elm-format):
./mill format --kind elmor a single project / path:
./mill format --kind elm --paths examples/morphir-elm-projects/evaluator-tests/srcMore detail for the evaluator-tests Elm tree: examples/morphir-elm-projects/evaluator-tests/ReadMe.md
Windows on ARM64 needs a native build JVM for Scala.js linking. Mill's managed JDK may resolve to an x64 build and
run under emulation, which makes the Closure phase of fullLinkJS much slower. Select the native Microsoft OpenJDK
and add the ignored local Mill override:
scoop install microsoft-lts-jdk # only when it is not already installed
scoop reset microsoft-lts-jdk
Set-Content .mill-jvm-version system
.\mill.bat --no-server --versionThe last command must report os.arch: aarch64. See the
Windows ARM64 contributor setup for the explanation and server command.
If you are using IntelliJ IDEA to edit morphir-scala's Scala code, you can create the IntelliJ project files via or use the BSP Setup option (BSP is the recommended approach):
.\mill -i mill.scalalib.GenIdea/idea
If you are using Visual Studio Code, IntelliJ, or any of the Editors which support BSP you can also generate BSP config files via:
.\mill mill.bsp.BSP/install
You can also try the following to use the mill-contrib-bloop plugin to install and use the Bloop based BSP setup.
NOTE: The recommended BSP based setup for mill is to run:
.\mill mill.bsp.BSP/installas mentioned above.
.\mill -i --import ivy:com.lihaoyi::mill-contrib-bloop: mill.contrib.bloop.Bloop/install
.\mill -i __.test
or in watch mode:
.\mill -i -w __.test
Documentation for the elm tests are located at examples/morphir-elm-projects/evaluator-tests/ReadMe.md
Code needs to be formatted according to scalafmt / elm-format rules. Prefer the Mill entrypoint:
.\mill -i format
Narrow selection during iteration:
.\mill -i format --changed
.\mill -i format --paths path\to\File.scala
See CONTRIBUTING.md — Formatting.
Watch for updates.
- Fork it (https://github.com/finos/morphir-scala/fork)
- Create your feature branch (
git checkout -b feature/fooBar) - Read our contribution guidelines and Community Code of Conduct
- Commit your changes (
git commit -am 'Add some fooBar') - Push to the branch (
git push origin feature/fooBar) - Create a new Pull Request
NOTE: Commits and pull requests to FINOS repositories will only be accepted from those contributors with an active, executed Individual Contributor License Agreement (ICLA) with FINOS OR who are covered under an existing and active Corporate Contribution License Agreement (CCLA) executed with FINOS. Commits from individuals not covered under an ICLA or CCLA will be flagged and blocked by the FINOS Clabot tool (or EasyCLA). Please note that some CCLAs require individuals/employees to be explicitly named on the CCLA.
Need an ICLA? Unsure if you are covered under an existing CCLA? Email help@finos.org
Copyright 2022 FINOS
Distributed under the Apache License, Version 2.0.
SPDX-License-Identifier: Apache-2.0