mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-15 16:12:51 +11:00
Merge pull request #49 from kulbir/issue-45
added installation docs - #45 Thank you!
This commit is contained in:
commit
76faf7fe9b
1 changed files with 28 additions and 0 deletions
28
docs/installation.rst
Normal file
28
docs/installation.rst
Normal file
|
@ -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/<your_username>/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
|
Loading…
Reference in a new issue