Saturday, December 9, 2017

Django Building a blog | Designing blog data Schema

Below is for Ubuntu. source djangoTestEnv/bin/activate cd Desktop django-admin startproject blogSite cd blogSite python manage.py startapp myBlog Go to blogSite/blogSite/settings.py and add 'myBlog' in INSTALLED_APPS section. It should look similar to belowINSTALLED_APPS = [   ...

Friday, December 1, 2017

Django Learn Series | Fields

Field Types: Numeric Data IntegerField  DecimalField Textual Data CharField Requires max_length attribute TextField Doesn't require max_length attribute EmailField URLField File Data FileField Example: filename.docx ImageField Example: abc.jpg Miscellaneous Data BooleanField DateTimeField This link provides...

Django Learn Series| Settings

settings.py is global to all apps in a django project. Django documentation in this link provides good overview of the settings. This link provides more detailed info of these settings Settings those needed change...

Page 1 of 49123»