Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added virtualenv usage. #27

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 11 additions & 4 deletions examples/mysite/README.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
The example site uses django.db.backends.sqlite3 and requires minimal configuration. ::
The example site uses django.db.backends.sqlite3, virtualenv and requires minimal configuration. ::

git clone [email protected]:hiidef/oauth2app.git oauth2app
# create and activate virtualenv
virtualenv oauth2_mysite
source oauth2_mysite/bin/activate
# install required python modules
pip install https://github.com/hiidef/oauth2app/tarball/master django django-uni-form django-nose
# create folder for temporary code
mkdir code && cd code
# clone oauth2app repository
git clone https://github.com/hiidef/oauth2app.git oauth2app
cd oauth2app/examples/mysite
git checkout master
pip install https://github.com/hiidef/oauth2app/tarball/master django django-uni-form
# syncdb and run development server
python manage.py syncdb --noinput
python manage.py runserver

Expand Down