-React
-TailwindCSS
-FastAPI
-Uvicorn
-Sqlalchemy
-Sqlite
-Axios
cd existing_folder
git clone https://github.com/kleprer/test_task.git
Внутри папки frontend:
cd frontend
npm install
Внутри папки backend:
cd backend
# создайте и активируйте виртуальное окружение для python
python -m venv env
env/Scripts/activate
# or (Mac)
env/bin/activate
# Установите необходимые модули из requirements.txt
pip install -r requirements.txt
Внутри папки frontend:
npm start
Oткройте http://localhost:3000 в браузере, чтобы увидеть результат.
Внутри папки backend:
uvicorn main:app --reload
Откройте http://localhost:8000/docs в браузере, чтобы открыть FastAPI документацию.