Use AI to enhance your learning.
We provide the install.sh script that allows quickly installing the packages and libraries that each of the components of this app require to run. However, if you want to install things manually, open a terminal window in this root folder and type:
cd be-flashcardspython3 -m venv .venvsource .venv/bin/activatepip install -r requirements.txtcd ../fe-flashcardsnpm installoryarn
We provide the run.sh script that allows quickly running the packages that form this app. Don't forget to create the .env files for each of the packages, as instructed in the individual packages' README files before you run anything.
In order to run the app locally, type:
cd be-flashcardssource .venv/bin/activateuvicorn src.main:app --reloadcd ../fe-flashcardsnpm devoryarn dev