Instructions to run the code
- Go to Frontend folder and run the following commands
npm i
Installs all the required dependenciesnpm start
Starts running on port number 3000 by default
- Go to Backend folder
- Download the scripts.sql file and import the database into the mysql db inorder to start with the inital data
- To import mysql data first login to your mysql and create a database then use the command
mysql -u username -p your_database_name < dumpfilename.sql
to import the data into db - Change the user name and password and the database name as defined in your system
- To run the backend, go to backend folder and run the command
go run .\main.go