Download and compile Idaka by following the steps.
To create a MongoDB use the following link to go to the home page https://account.mongodb.com/account/login where you can find the database section and then click on the create button.
For more details please refer to MongoDB_Documentation
Once you created the database, the following step will be creating the required collections for the app. For this, navigate to the Collections tab and click on the Create collection button.
It would be neccesary to create 4 collections: Practices, Queries, Stages, TasksWithPractices.
For more details please refer to MongoDB_Documentation
The following data needs to be uploaded on their corresponding collections:
In order to do this you should go to your collection and click on Insert Document. Select the JSON way to upload, and copy/paste the corresponding data.
On the back-end folder create a .env file with the variable REACT_APP_DB_CONNECTION_STRING. Note that you should add the connection string for the database. For more details please refer to MongoDB_Documentation
git clone https://github.com/TheSoftwareDesignLab/Idaka.git
To run the back-end:
cd Back-end
npm i
npm start
Now by opening another terminal, to run front-end:
cd Front-end
npm i
npm run build
npm start