This program takes several ugly Excel files and makes a finalized file with properly translated and extended values, along with some calculations based on quotas.
-
Install poetry as a dependency manager by instructions (if you have already installed it, skip this step).
-
Proceed to the backend directory and install project dependencies using poetry:
cd backend poetry install
-
Create
.env
file:PYTHONPATH=./
-
Launch the backend:
poetry run python -m uvicorn src.main:app --reload
-
Tests:
make test
-
Black:
make black make black-fix
-
Isort:
make isort make isort-fix
-
Install yarn as a dependency manager: by instructions (if you have already installed it, skip this step).
-
Install project dependencies using yarn:
cd frontend yarn install
-
Launch the frontend:
yarn start