https://github.com/fraidev/rinha-compiler
https://github.com/fraidev/rinha-compiler
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/fraidev/rinha-compiler
- Owner: fraidev
- Created: 2023-09-19T02:00:38.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-24T01:53:25.000Z (over 1 year ago)
- Last Synced: 2025-02-12T14:29:01.367Z (3 months ago)
- Language: OCaml
- Size: 38.1 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rinha
## Como rodar o projeto
Faça o build com:
```bash
docker build . -t="rinha"
```Rode os examplos com:
```bash
docker run rinha files/fib.json
```Rode outros examples por bind volume usando:
```bash
docker run -v $(pwd)/files/fib.json:/var/rinha/source.rinha.json rinha
```## Dev Setup with Nix
```bash
nix develop -c $SHELL
```## Como rodar os testes
```bash
dune build @runtest --force --no-buffer
```