A neural based descriptive answer evaluator
-
Start a virtual environment for backend.
cd descrypt-backend-
Create a Python Virtual Environment here:
- Ubuntu -
python3 -m venv ./venv - macOS -
python3 -m venv ./venv - Windows -
C:\> python3 -m venv ./venv
- Ubuntu -
-
Activate the virtual environment
- Ubuntu -
source ./venv/bin/activate - macOS -
source ./venv/bin/activate - Windows -
C:\> .\venv\Scripts\activate
- Ubuntu -
-
-
Install dependencies
pip install -r requirements.txt
-
Start backend server
python3 main.py
-
Install dependencies for frontend
-
cd .. -
npm i
-
-
Start server
npm start