This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| from requestbin.web import app | |
| from requestbin.service import RequestBin | |
| from requestbin.storage.memory import MemoryStorage | |
| request_bin = RequestBin() | |
| request_bin.do_start() | |
| app.config['bind_address'] = ('0.0.0.0', int(os.environ.get("PORT", 5000))) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import logging | |
| import sys | |
| import time | |
| from threading import Thread | |
| from Queue import Queue | |
| from django.conf import settings | |
| from django.core.exceptions import ImproperlyConfigured | |
| from django.db.models.loading import get_model | |
| from haystack.backends import BaseSearchBackend, BaseSearchQuery, log_query, EmptyResults | |
| from haystack.constants import ID, DJANGO_CT, DJANGO_ID |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import csv | |
| from github2.client import Github | |
| # api settings for github | |
| git_username = 'your_git_username' | |
| git_api_token = 'your_git_api_token' | |
| git_repo = 'username/repo_name' | |
| # import all issues as this story type | |
| pivotal_story_type = 'Bug' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <syntaxColor id="CodeColor_DjangoTemplateFilter" text="#5C4B5E" /> | |
| <syntaxColor id="CodeColor_DjangoTemplateTag" text="#5C4B5E" /> | |
| <syntaxColor id="CodeColor_DjangoTemplateBlockTag" text="#999999" bold="true" /> | |
| <syntaxColor id="CodeColor_DjangoTemplateVariable" text="#999999" bold="true" /> | |
| <syntaxColor id="CodeColor_DjangoTemplateString" text="#99CC66" /> | |
| <syntaxColor id="CodeColor_DjangoTemplateIdentifier" text="#B8A484" /> | |
| <syntaxColor id="CodeColor_DjangoTemplateOperator" text="#993333" /> | |
| <syntaxColor id="CodeColor_DjangoTemplateNumbers" text="#993333" /> |
NewerOlder