This is a nx monorepo for most of the development of CodesDoWork. See the docs for more detailed information about this repo.
The root LICENSE applies to all packages unless explicitly stated in a package's
directory.
This monorepo uses nx as framework to manage the packages. Natively, it uses typescript, but python was added for some projects.
To install the dependencies run the install command of the package manager used here or ni (when
@antfu/ni is installed).
- Create a virtual environment:
python -m venv .venvand activate it:source .venv/bin/activateor.venv\Scripts\activate(Windows). - To install the dependencies run
pip install -r requirements.txt - To create the
requirements.txtfile fromrequirements.in, runuv pip compile requirements.in(uvneeded).