plone / documentation

Plone Documentation
https://docs.plone.org
92 stars 154 forks source link

Move Python virtual environment into venv from root #1769

Closed stevepiercy closed 1 week ago

stevepiercy commented 1 week ago

--clear is the recommended way to wipe and recreate a clean virtual environment. python3 -m venv venv --clear will purge files and directories, such as .git and .my_special_config, from the current directory. This would be Very Bad™.

Credit to @mrtango


📚 Documentation preview 📚: https://plone6--1769.org.readthedocs.build/

ksuess commented 1 week ago

--clear is the recommended way to wipe and recreate a clean virtual environment. python3 -m venv venv --clear will purge files and directories, such as .git and .my_special_config, from the current directory. This would be Very Bad™.

:-) Funny experience when the repo content disappears on python3 -m venv . --clear!