diff --git a/.gitignore b/.gitignore index a4dbcac..5cc1688 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,8 @@ -venv/ .idea/ -dist/ -pssecret.egg-info/ +.python-version +.venv/ +__pycache__/ build/ conf/pssecret.toml -__pycache__/ +dist/ +pssecret.egg-info/ diff --git a/README.md b/README.md index 4dea036..0c6071b 100644 --- a/README.md +++ b/README.md @@ -24,8 +24,8 @@ Service is built with Python, FastAPI and is using Redis for data storage. ```bash $ git clone git@git.ivnglkv.me:root/pssecret.git -$ python3 -m venv venv -$ . ./venv/bin/activate +$ python3 -m venv .venv +$ . ./.venv/bin/activate $ pip install . ```