Test
- Free software: BSD-3-Clause
- Documentation: https://darkquasar.github.io/ragintel/
- TODO
git clone XXXXX
Go to the Miniforge repo, download one of the installers and you are good to go!
mamba env create --file ragintel-mamba-env.yaml
poetry install --with dev
git init
git config init.defaultBranch main
git config user.name "YourName"
git config user.email "[email protected]"
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 main
To 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 dev
This package was created with the Python Project Wizard Cookiecutter template.