-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathINSTALL
42 lines (27 loc) · 868 Bytes
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
Installation information
------------------
Semi automated way
------------------
python install_django.py
To start the Django Server:
python manage.py runserver [port]
To view admin interface
127.0.0.1:[port]/admin
To view test
127.0.0.1:[port]/riab_basic
--------------------------------------------
If the above fails, try the individual steps
--------------------------------------------
Django 1.3
svn co http://code.djangoproject.com/svn/django/trunk/ django-trunk
sudo python setup.py install
To setup the local db
#TODO maybe remove legacy db if exists
python manage.py syncdb
edit settings.py and ensure the TEMPLATE_PATH is correct. It must be the absolute path to ../riab_django/source
To start the Django Server:
python manage.py runserver [port]
To view admin interface
127.0.0.1:[port]/admin
To view test
127.0.0.1:[port]/riab_basic