aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorMike Crute <mcrute@gmail.com>2012-10-24 16:59:46 -0400
committerMike Crute <mcrute@gmail.com>2012-10-24 17:03:08 -0400
commit3584f33f468ac027390b6312e93b2b55d06da740 (patch)
tree7f501f787e9e6708a93155bea55a2554317941af /README.md
parentebffa435ca99b24eaecebb7a58b76f28a3249a49 (diff)
downloaddjango-precompiler-3584f33f468ac027390b6312e93b2b55d06da740.tar.bz2
django-precompiler-3584f33f468ac027390b6312e93b2b55d06da740.tar.xz
django-precompiler-3584f33f468ac027390b6312e93b2b55d06da740.zip
First steps
Diffstat (limited to 'README.md')
-rw-r--r--README.md34
1 files changed, 33 insertions, 1 deletions
diff --git a/README.md b/README.md
index 980a0d5..c08f893 100644
--- a/README.md
+++ b/README.md
@@ -1 +1,33 @@
1Hello World! 1================================
2CodeMash 2012 Django Precompiler
3================================
4
5 $ virtualenv django-precompiler
6 $ cd django-precompiler
7 $ source bin/activate
8 $ git init src
9 $ cd src
10
11create requirements.txt
12
13 $ pip install -r requirements.txt
14
15 $ django-admin.py startproject codemash
16 $ mv codemash/ codemash-base
17 $ mv codemash-base/* .
18 $ rm -rf codemash-base/
19 $ chmod +x manage.py
20 $ ./manage.py runserver
21
22yay, django default page! now let's setup a template
23
24 $ mkdir codemash/templates
25
26create codemash/templates/index.html
27
28edit codemash/settings.py
29- import os
30- add PROJECT_DIR
31- update TEMPLATE_DIRS
32
33edit codemash/urls.py