File tree 1 file changed +7
-1
lines changed
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,8 @@ But don't be fooled, it isn't a real tree. It is an ASCII representation of the
76
76
├── env
77
77
│
78
78
├── manage.py
79
- ├── requirements.txt
79
+ ├── Pipfile
80
+ ├── Pipfile.lock
80
81
├── tests
81
82
│ ├── __init__.py
82
83
│ ├── api
@@ -187,6 +188,11 @@ I've coded a little API test client because I don't know anything better. Please
187
188
### wsgi.py
188
189
This teeny tiny script is used to deploy later on. Let it be!
189
190
191
+ ### Pipfile and Pipfile.lock
192
+ I decided to start using [ Pipenv] ( https://github.com/pypa/pipenv ) for this skeleton instead of ` pip ` .
193
+ While I don't really like some aspects of ` pipenv ` , I think they are moving towards the right direction.
194
+ Resolution of dependencies and their respective subdependencies, dependencies hash checking and security scans are a must nowadays.
195
+ The usage of the tool is outside of this project, so I kindly suggest to read their [ basics guide] ( https://docs.pipenv.org/en/latest/basics/ ) .
190
196
191
197
192
198
## Farewell
You can’t perform that action at this time.
0 commit comments