A Copilot for Tax Firms
# activate python3.10 virtual environment (note: it is precisely 3.10 that is needed)
brew install python@3.10 # install
python3.10 -m venv venv # create virtual environment
source venv/bin/activate # activate virtual environment
python --version && python3 --version # ensure 3.10 is being used
# install dependencies
npm ci
# serve with hot reload at localhost:8080
npm run dev
# build for production with minification
npm run build
# run unit tests
npm run unit
# run e2e tests
npm run e2e