Skip to content
Sarah P edited this page Jan 3, 2023 · 5 revisions

Testing the project

First things first, if you aren't using Docker you need to setup a postgresql database

Any of the links below explain how to setup a postgresql database so pick your distributions (if yours isn't listed I prefer the Arch Docs)

You need to make sure you have a Rust toolchain installed.

You also need to make sure you are using node 16, NVM (Node Version Manager) is the easiest way to do this.

NVM

then you can just run

nvm alias default 16

in order to test the project right now just run

make configure
make build
make run

going to LocalHost will now show the home page for Zion!

you can also run the test suite after configuring and building by running

make test
Clone this wiki locally