Skip to content

Commit b361209

Browse files
authored
Merge pull request DjangoGirls#1309 from kaizumaki/master
Fixes DjangoGirls#1308, add requirements.txt to the list of files
2 parents 877af7b + 28f6b4f commit b361209

2 files changed

Lines changed: 8 additions & 6 deletions

File tree

en/deploy/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ Untracked files:
6767
blog/
6868
manage.py
6969
mysite/
70+
requirements.txt
7071
7172
nothing added to commit but untracked files present (use "git add" to track)
7273
```
@@ -186,7 +187,7 @@ Now, if you like, you can also take a look at your code on PythonAnywhere using
186187
{% filename %}PythonAnywhere command-line{% endfilename %}
187188
```
188189
(ola.pythonanywhere.com) $ ls
189-
blog db.sqlite3 manage.py mysite static
190+
blog db.sqlite3 manage.py mysite requirements.txt static
190191
(ola.pythonanywhere.com) $ ls blog/
191192
__init__.py __pycache__ admin.py forms.py migrations models.py static
192193
templates tests.py urls.py views.py

en/django_start_project/README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,12 @@ The `(myvenv) C:\Users\Name\djangogirls>` part shown here is just example of the
5252
```
5353
djangogirls
5454
├───manage.py
55-
└───mysite
56-
settings.py
57-
urls.py
58-
wsgi.py
59-
__init__.py
55+
├───mysite
56+
│ settings.py
57+
│ urls.py
58+
│ wsgi.py
59+
│ __init__.py
60+
└───requirements.txt
6061
```
6162
> **Note**: in your directory structure, you will also see your `venv` directory that we created before.
6263

0 commit comments

Comments
 (0)