Install¶
There are two ways to install RayforceDB:
Download a pre-built binary¶
Refer to a release page
Building from source¶
These OSes are supported (for now):
Linux¶
Requirements¶
git clone https://github.com/singaraiona/rayforce
cd rayforce
make release
rlwrap ./rayforce -f examples/table.rfl
Windows¶
Requirements¶
git clone https://github.com/singaraiona/rayforce
cd rayforce
mingw32-make.exe CC="gcc" LIBS="-lm -lws2_32 -lkernel32" release
./rayforce.exe -f examples/table.rfl
MacOS¶
git clone https://github.com/singaraiona/rayforce
cd rayforce
make release
rlwrap ./rayforce -f examples/table.rfl
Tests¶
Tests are under tests/ directory. To run tests: