G.R.E ( Graduate Record Examination ) Helper is a flask web application connected with sqlite database and powered by react frontend that:
- Evaluates your performance based off of G.R.E mock test and gives you a performance report which specifies topics you should focus on to improve your score.
- Users can opt for another mock test curated to topics that the user is weak in.
- Resources on how to improve your weakness
- Select an Issue and get yourself assigned
- Follow the PR guidelines in the file CONTRIBUTING.md to make proper PRs
- Want to understand more about this project ? check out these slides link
-
Open terminal inside the directory you want to clone the repo
-
Enter in terminal
git clone https://github.com/NeerajHazarika/gre_helper.git
cd gre_helper
cd backend
- Create a new virtual environment:
check if you have virtualenv
installed
which virtualenv
If not, enter command follwing in terminal
pip install virtualenv
virtualenv <your_virtualenv_name>
replace <your_virtualenv_name> with whatever name you want your virtual environment to be. Eg: myenv
- Install requirements.txt
pip install requirements.txt
- Start the flask web server
flask run
- Go to
http://localhost:5000
on your web browser, to see if the web server is successfully started or not