diff options
author | Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com> | 2014-02-28 16:53:28 (GMT) |
---|---|---|
committer | Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com> | 2014-02-28 16:53:28 (GMT) |
commit | f44cf6587f67095f777c4847e5cc12c5fbef957e (patch) | |
tree | ee749d125b784a0aad3647273ced6c6dfdb72ae6 /README.rst | |
parent | ff12c7bebb0eca7495951b25d29949662bf32f9f (diff) | |
parent | 14fc181b93edac9db5435f3110feb4a8267e38d4 (diff) |
Merge branch 'master' of https://github.com/nnrcschmdt/helsinki
Diffstat (limited to 'README.rst')
-rw-r--r-- | README.rst | 17 |
1 files changed, 10 insertions, 7 deletions
@@ -10,30 +10,33 @@ To get setup you must have the following installed: * Python 2.7 * virtualenv 1.11 + Setting up the environment -------------------------- Create a virtual environment where the dependencies will live:: - $ virtualenv --no-site-packages helsinki - $ source helsinki/bin/activate - (helsinki)$ + $ virtualenv -p python2.7 python + $ source python/bin/activate + (python)$ Install the project dependencies:: - (helsinki)$ pip install -r requirements.txt + (python)$ pip install -r requirements.txt + Setting up the database ----------------------- By default the project is set up to run on a SQLite database. You can run:: - (helsinki)$ python manage.py syncdb - (helsinki)$ python manage.py loaddata program/fixtures/*.yaml + (python)$ python manage.py syncdb + (python)$ python manage.py loaddata program/fixtures/*.yaml + Running a web server -------------------- In development you should run:: - (helsinki)$ python manage.py runserver + (python)$ python manage.py runserver |