Skip to content

dolphins-2017/Resources

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

68 Commits
 
 
 
 
 
 

Repository files navigation

Django Setup

$ virtualenv env    
$ source env/bin/activate 
(env)$ pip3 install django-toolbelt
(env)$ django-admin startproject `<your project name here>` . 

Create An App

(env)$ python3 manage.py startapp `<your app name here>` 

Create Migrations

(env)$ python3 manage.py makemigrations 

Apply Migrations To The Database

(env)$ python3 manage.py migrate

Enter An Interactive Shell Where The Models Can Be Used

(env)$ python3 manage.py shell

Enter An The Shell Of The Default Database

(env)$ python3 manage.py dbshell
Resources
Daily Problems
JavaScript Introduction
Python Data Structures
OOP(Object Oriented Programming)
Design Patterns
MVC Pig
MVC Contacts
The Command Line Interface and Git
Cheat Sheets

About

Links to useful resources.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published