A web based app for identifying the likelihoods of oxidation states coexisting in materials and applying this knowledge.
This repo uses a submodule for the original java code.
See this submodule guide for working with submodules.
- clone from scratch
git clone --recurse-submodules [email protected]:TRI-AMDD/oxidation-state-app.git
- or if you already cloned without submodules
git clone [email protected]:TRI-AMDD/oxidation-state-app.git submodule update --init --recursive
git pull
by itself doesn't take in submodule updates. Need an additional command.
git pull
git submodule update --init --recursive
To make sure this repo uses the latest code from the submodule repo:
git submodule update --remote
Then commit and push the changes.
Run the UI in a separate terminal
docker compose up --build
Browser will automatically load the app at http://localhost/ Learn more about UI API is served at http://localhost:7070/api
Make a POST request with the payload { "composition": "LiFePO4" } to https://www.oxi.matr.io/api
curl 'https://www.oxi.matr.io/api' \
--data-raw '{"composition":"LiFePO4"}' \
--compressed
Make a POST request with the payload { "structure": "string contents of structure file" } to https://www.oxi.matr.io/api
curl 'https://www.oxi.matr.io/api' \
--data-raw '{"structure":"string contents of structure file"}' \
--compressed