Django Flashcards
1
Q
manage.py
A
program you run to modify your project
2
Q
db.sqlite
A
your database
3
Q
cs3550/urls.py
A
routes URLs to the functions that generate them
4
Q
cs3550/settings.py
A
global project settings
5
Q
models.py
A
describes what you will store in the database
6
Q
migrations/
A
tracks changes to the database
7
Q
views.py
A
renders the HTML templates
8
Q
IntegerField
A
Stores integers
9
Q
FloatField
A
stores floating-point numbers
10
Q
DecimalField
A
stores decimal numbers, use for money over float.
11
Q
CharField
A
stores short strings, pass max_length
12
Q
TextField
A
stores long strings
13
Q
EmailField
A
store an email address
14
Q
URLField
A
stores URLs
15
Q
ImageField
A
images