- Go to Backend directory-
cd Backend
- Create Virtual environment-
python -m venv .venv
- Activate the virtual environment-
- (For Windows)-
.\.venv\Scripts\activate
- (For macOS/Linux)-
source .venv/bin/activate
- Install the required package-
pip install -r requirements.txt
- Create a
.env
file which contain the USERNAME and PASSWORD of TU Chemnitz. Put the following line inside the.env
file-
USERNAM=<TUC USERANME>
PASSWORD=<TUC PASSWORD>
-
Download the Chrome Driver, extract the zip and put the chromedriver.exe in the Backent root directory
-
Strat the Backend using-
uvicorn main:app --reload
- The Backend will be running on-
- The API documentation could be found at-
- Go to Frontend directory-
cd Frontend
- Install the required package-
yarn install
- Strat the Frontend using-
yarn start
- Create a
.env
file and put the following line inside the.env
file-
SKIP_PREFLIGHT_CHECK=true
- The Frontend will be running on-