Installing virtual environment in .venv directory
This commit is contained in:
parent
c570ed0e8d
commit
e4fbd311bb
2 changed files with 7 additions and 6 deletions
9
.gitignore
vendored
9
.gitignore
vendored
|
@ -1,7 +1,8 @@
|
||||||
venv/
|
|
||||||
.idea/
|
.idea/
|
||||||
dist/
|
.python-version
|
||||||
pssecret.egg-info/
|
.venv/
|
||||||
|
__pycache__/
|
||||||
build/
|
build/
|
||||||
conf/pssecret.toml
|
conf/pssecret.toml
|
||||||
__pycache__/
|
dist/
|
||||||
|
pssecret.egg-info/
|
||||||
|
|
|
@ -24,8 +24,8 @@ Service is built with Python, FastAPI and is using Redis for data storage.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
$ git clone git@git.ivnglkv.me:root/pssecret.git
|
$ git clone git@git.ivnglkv.me:root/pssecret.git
|
||||||
$ python3 -m venv venv
|
$ python3 -m venv .venv
|
||||||
$ . ./venv/bin/activate
|
$ . ./.venv/bin/activate
|
||||||
$ pip install .
|
$ pip install .
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue