-
Notifications
You must be signed in to change notification settings - Fork 5
Installation
Sai Pavan edited this page Apr 1, 2022
·
4 revisions
The frontend requires Node JS (version 14.17.1 and above) installed in your environment.
- You can download Node JS from here and follow the instructions to complete the installation.
- You can verify the installation by copying these command and running them in your terminal
node -v and npm -v
. - Also, the above commands will run if you have an existing installation of Node JS.
- To install cypress for testing run the following command after installing Node JS
npm install cypress
, if you are facing any issues refer this link.
Backend for this project requires installing Go(v 1.17.6) and SQLite3 database in your local environment.
- You can download Go from here and follow the instructions to complete the installation.
- You can verify the installation by copying this command and running it in your terminal
go version
. - Also, the above command will run if you have an existing installation of Go.
A C/C++ compiler GCC is also required for the backend to run.
- To install GCC on your windows machine follow the instructions here.