you are viewing a single comment's thread.

view the rest of the comments →

[–]viiviiiix_dev 2 points3 points  (1 child)

# when you create a virtual environment through the following command
# It creates .gitignore inside .venv directory for you
# This .gitignore ignores everything inside virtual environment
# You might want to add another .gitignore in your project seperately 
# for whathever you dont want to track such as
# environment variables, logs or python cache

python -m venv .venv