Vaultify
Set up the node modules
After downloading the repo, you will need to install the packages. There are two places to do this.
First, in the project root, run npm install
.
Second, in the client/ folder, run npm install
again.
Run the development server
You will need two terminal sessions active.
-
From the project root, run
node bin/www
to start the backend (available atlocalhost:3001
). -
From
client/
, runnpm run build-css
to build the css pages, thennpm run start
to start the development server. Any changes you make within theclient/src
directory will be compiled automatically and served tolocalhost:3000
.