Thursday, November 30, 2017

Django Learn Series | Creating a Django App

cd Desktop/DjangoPractice/firstdjango python manage.py startapp firstapp Files inside firstapp folder are below models.py -- DB interaction admin.py -- admin interface views.py -- App's logic and URL request / response tests.py -- Automated tests  migrations folder...

Django Learn Series | Creating a Django project

source djangoTestEnv/bin/activate Create a folder like DjangoPractice on Desktop cd Desktop/DjangoPractice django-admin startproject firstdjango Auto creates  a folder named firstdjango and required files in it Subfolder named firstdjango inside firstdjango will have  init.py settings.py Configures Django urls.py Routes requests...

Django Learn Series | Installation

On Ubuntu Machine, use below steps. sudo -H pip install virtualenv Using pip and installing virtualenv (recommended) instead of global installation virtualenv -p python djangoTestEnv djangoTestEnv is sample name of virtual environment source djangoTestEnv/bin/activate...

Page 1 of 49123»