-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathchapter_08_example_02.bash
46 lines (45 loc) · 1.79 KB
/
chapter_08_example_02.bash
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Using This Code Example
# =========================
# The code examples provided are provided by Daniel and Audrey Feldroy of
# Feldroy to help you reference Django Crash Course. Code samples follow
# PEP-0008, with exceptions made for the purposes of improving book
# formatting. Example code is provided "as is".
#
# Permissions
# ============
# In general, you may use the code we've provided with this book in your
# programs . You do not need to contact us for permission unless you're
# reproducing a significant portion of the code and using it in educational
# distributions. Examples:
# * Writing an education program or book that uses several chunks of code from
# this course requires permission.
# * Selling or distributing a digital package from material taken from this
# book does require permission.
# * Answering a question by citing this book and quoting example code does not
# require permission.
# * Incorporating a significant amount of example code from this book into your
# product's documentation does require permission.
# Attributions usually include the title, author, publisher and an ISBN. For
# example, "Django Crash Course, by Daniel and
# Audrey Feldroy. Copyright 2020 Feldroy."
#
# If you feel your use of code examples falls outside fair use of the permission
# given here, please contact us at [email protected].
hellodjango
├── db.sqlite3
├── hellodjango
│ ├── __init__.py
│ ├── asgi.py
│ ├── settings.py
│ ├── urls.py
│ └── wsgi.py
├── homepage
│ ├── __init__.py
│ ├── admin.py
│ ├── apps.py
│ ├── migrations
│ │ └── __init__.py
│ ├── models.py
│ ├── tests.py
│ └── views.py
└── manage.py