2022-03-25 22:19:32 +00:00
|
|
|
# nri file reader
|
|
|
|
|
|
|
|
## about
|
|
|
|
|
|
|
|
common/nori provides structs and decoders for nori file
|
|
|
|
|
|
|
|
## cory
|
|
|
|
|
|
|
|
cmd/cory is command line util for working with nori files
|
|
|
|
|
|
|
|
get a zip file of animations from a nori file
|
|
|
|
|
|
|
|
usage: `./cory -d -f=filename.nri -o=output.zip`
|
|
|
|
|
|
|
|
optionally, use webserver
|
|
|
|
|
|
|
|
start: `./cory -serve`
|
|
|
|
|
|
|
|
example with curl: `curl -X POST --data-binary "@filename.nri" localhost:3333/animations --output output.zip`
|
|
|
|
|
|
|
|
### building cory
|
|
|
|
|
|
|
|
```
|
|
|
|
make cory
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
### docker
|
|
|
|
|
|
|
|
oh yeah there's also a docker image for cory lol
|
|
|
|
|
|
|
|
```
|
|
|
|
make docker
|
|
|
|
```
|
2022-03-25 22:20:50 +00:00
|
|
|
|
|
|
|
and to run server
|
|
|
|
|
|
|
|
```
|
|
|
|
make server-run
|
|
|
|
```
|