From 7f1c649e300f0cdfae6337101a325f0c7d986a5f Mon Sep 17 00:00:00 2001 From: kulbir Date: Fri, 21 Feb 2014 15:14:37 +0530 Subject: [PATCH] added installation docs - #45 --- docs/installation.rst | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 docs/installation.rst diff --git a/docs/installation.rst b/docs/installation.rst new file mode 100644 index 0000000..04313d3 --- /dev/null +++ b/docs/installation.rst @@ -0,0 +1,28 @@ +================ +installation.rst +================ + +Get Started! +------------ + +Ready to contribute? Here's how to set up `dpaste` for local development. + +1. Fork the `dpaste` repo on GitHub. +2. Clone your fork locally:: + + $ git clone https://github.com//dpaste.git + +3. Install your local copy into a virtualenv. Assuming you have virtualenvwrapper installed, this is how you set up your fork for local development:: + + $ mkvirtualenv dpaste + $ cd dpaste/ + $ pip install -r requirements.txt + +4. Run the commands:: + + $ python manage.py syncdb + $ python manage.py migrate + +5. Start up the webserver:: + + $ python manage.py runserver