Guest User

Untitled

a guest
Jul 31st, 2017
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. # Django project configuration, if environ vars are missing
  2. #
  3. # This is a sample file. Rename to local.env for a quick development
  4. # settings. Git will not track local.env as it contains confidential
  5. # information. So store a backup of this file outside this repo.
  6. #
  7. # Note: No spaces around '=' sign and no quotes for righthand values.
  8.  
  9. DEBUG=True
  10.  
  11. # syntax: DATABASE_URL=postgres://username:password@127.0.0.1:5432/database
  12. DATABASE_URL=sqlite:///db.sqlite3
  13.  
  14. # Command to create a new secret key:
  15. # $ python -c 'import random; import string; print("".join([random.SystemRandom().choice(string.digits + string.ascii_letters + string.punctuation) for i in range(100)]))'
  16. SECRET_KEY=cs_@fuw6*z9tbgs%eeh+q(2@w3plw*^50w+f%_gal5fna@*9e-
  17.  
  18. # Allowed host in production mode
  19. # ALLOWED_HOST=sample.com
  20.  
  21. # Celery broker url
  22. # CELERY_BROKEN_URL=amqp://guest:guest@localhost//
  23.  
  24. # Celery result backend
  25. CELERY_RESULT_BACKEND=redis://localhost:6379/0
  26. REDIS_CACHE=redis://localhost:6379/1
  27.  
  28. # Root folders in production mode
  29. # STATIC_ROOT=/var/www/crawler_engine/static
  30. # LOGFILE_ROOT=/var/log/crawler_engine
  31.  
  32. # Proxy Bonaza
  33. BONANZA_API_KEY=XsCGvhtdQV8jWT4C6E2XmRt2qzSt64RALVXKLM2QqxwxzkfJM4!43734
  34.  
  35. RESULT_MONGODB=mongodb://mongodb:27017/
  36.  
  37. PROXY_HOST=http://usloft1630.startdedicated.com/api/proxy.php
  38. PROXY_SECRET=d77707f6fbbb4e8563ef4fba791437d2
  39. PROXY_PASSWORD=3e92a939832b3212f506b150a1c9595e
  40.  
  41. MWS_ACCESS_KEY=AKIAIMJD6TQYTB5IUEMQ
  42. MWS_SECRET_KEY=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
Add Comment
Please, Sign In to add comment