A collection of tools for NCAIC competitors.
There are multiple ways to use the toolkit.
Requirements: Node.js
This method only install the toolkit, without any language support (but JS support should be already satisfied).
npm i -g ncaicYou can then use ncaic check to check the language support on your system.
Requirements: Node.js, PNPM (optional)
You can also run it directly using a single npx or pnpm dlx command.
npx -y ncaicor
pnpm dlx ncaicRequirements: Docker
This methods provides a Docker image including the toolkit and all the language support.
docker run --rm jacoblincool/ncaicYou can run command like this:
docker run --rm jacoblincool/ncaic checkIf you want to run the local server, you will need to bind both volume and port.
docker run --rm -v "$(pwd)/config.yml:/app/config.yml" -p 52022:52022 -it jacoblincool/ncaic runor using -e to expose a secure tunnel.
docker run --rm -v "$(pwd)/config.yml:/app/config.yml" -it jacoblincool/ncaic run -eUnderstand what -v and -p do: https://docs.docker.com/engine/reference/commandline/run/#options
Note: Images are hosted on Docker Hub: jacoblincool/ncaic
ncaic --helpYou can use ncaic <command> --help to get the help for a specific command.
ncaic checkncaic verifyncaic testncaic initncaic runIt is useful to find the performance gap between your computer and the competition server.
ncaic perf