-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
13 lines (10 loc) · 796 Bytes
/
README
File metadata and controls
13 lines (10 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
Add yourselves to this file
arjun1985
ytamura
lorenyu
Random tips:
1. To create a new Django project on your laptop, cd into the directory you want to have your files live in. Then run django-admin.py startproject abootay. Ive set this up so this is different from my git repository, and I'll just copy files from one to the othe
2. To start the development server on your laptop, run python manage.py runserver. Now, from your laptop's browser if you go to http://localhost/<yoursitefullpath> you should see your django stuff.
3. To create a new subdirectory under abootay ( in Django terms, an 'app' ) run python manage.py startapp <app>. I've done one for helloWorld.
4. For conflicts, do git stash, git pull, git stash apply
5. git status shows you the status of the checked out files etc