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-flashcards
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
cd ../fe-flashcards
npm install
oryarn
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-flashcards
source .venv/bin/activate
uvicorn src.main:app --reload
cd ../fe-flashcards
npm dev
oryarn dev