https://github.com/mbari-org/mondrian
VARS Image Annotation Application
https://github.com/mbari-org/mondrian
Last synced: 3 months ago
JSON representation
VARS Image Annotation Application
- Host: GitHub
- URL: https://github.com/mbari-org/mondrian
- Owner: mbari-org
- Created: 2023-04-15T20:36:42.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-14T00:04:13.000Z (almost 2 years ago)
- Last Synced: 2025-02-04T21:43:20.469Z (11 months ago)
- Language: Java
- Homepage:
- Size: 2.83 MB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Mondrian
A VARS Image annotation application. This application is usable, but still in early development.
Mondrian requires that the VARS microservice stack is running. See [mbari-org/m3-quickstart](https://github.com/mbari-org/m3-quickstart).

## Developers
VARS tools Uses libraries in [mbari-org/maven](https://github.com/mbari-org/maven). You can follow the instructions there to allow gradle to fetch the needed libraries or incuded you github user hame and access token in the example below.
```bash
.\gradlew clean jpackage --info -P"gpr.user"=my_github_username -P"gpr.key"=my_github_token
```
### Code signing for Macs
```bash
# You need a Developer ID Application cert from developer.apple.com. A fake id used below
export MAC_CODE_SIGNER="Developer ID Application: blah blah blah (ABC123456)"
cd mondrian
# The build will correctly sign everything if your MAC_CODE_SIGNER is correct
./gradlew clean jpackage --info
cd mondrian/build/jpackage
# App must be packaged/zipped to be notarized
ditto -c -k --keepParent "Mondrian.app" "Mondrian.zip"
xcrun notarytool submit "Mondrian.zip" \
--wait \
--team-id ABC123456 \ # Found in your Developer ID cert name
--apple-id \ # Your email you log in to developer.apple.com with
--password "" # You have to use an app password for your account from appleid.apple.com
# We staple to the original app, NOT the zip
xcrun stapler staple "Mondrian.app"
# Remove the old zip file
rm "Mondrian.zip"
# Rezip the app and use that zip to distribute it.
ditto -c -k --keepParent "Mondrian.app" "Mondrian.zip"
```