Advertisement
Guest User

Untitled

a guest
May 24th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. #!/bin/bash
  2. set -e
  3. set -x
  4.  
  5. git clone git@github.com:holgerd77/django-dynamic-scraper.git
  6.  
  7. cd django-dynamic-scraper
  8. virtualenv -p python2.7 env
  9. source env/bin/activate
  10. pip install celery==2.4.6
  11. pip install django-celery==2.4.2
  12. pip install uuid
  13. pip install -r requirements.txt
  14. python setup.py install
  15.  
  16. cd example_project
  17. mkdir -p open_news/migrations
  18. touch open_news/migrations/__init__.py
  19. python manage.py makemigrations
  20. python manage.py migrate
  21. python manage.py createsuperuser
  22. python manage.py runserver
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement