Test
- Free software: BSD-3-Clause
- Documentation: https://darkquasar.github.io/ragintel/
- TODO
git clone XXXXXGo to the Miniforge repo, download one of the installers and you are good to go!
mamba env create --file ragintel-mamba-env.yamlpoetry install --with devgit init
git config init.defaultBranch main
git config user.name "YourName"
git config user.email "YourEmail@something.com"
pre-commit install
git remote add origin git@github.com:darkquasar/ragintel.git
git add .
pre-commit run --all-files
git add .
git commit -m "Initial contribution commit"
git branch -M main
git push -u origin mainTo achieve this, we will destroy the Mamba virtual environment, then recreate it and add install all Poetry packages again
# Delete poetry.lock
del poetry.lock
# Deactivate your ragintel env
mamba deactivate
# Delete environment
mamba env remove -n ragintel
# Create ragintel Mamba env again
mamba env create --file ragintel-mamba-env.yaml
# Re-Install all packages using Poetry
poetry install --with devThis package was created with the Python Project Wizard Cookiecutter template.