Last active
July 31, 2020 04:25
-
-
Save kmmbvnr/8760daf908e58a600af4b5ad623fd3e5 to your computer and use it in GitHub Desktop.
setry_bug_661
This file contains 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
This file contains 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
#!/usr/bin/env python | |
"""Django's command-line utility for administrative tasks.""" | |
import os | |
import sys | |
def main(): | |
"""Run administrative tasks.""" | |
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'settings') | |
try: | |
from django.core.management import execute_from_command_line | |
except ImportError as exc: | |
raise ImportError( | |
"Couldn't import Django. Are you sure it's installed and " | |
"available on your PYTHONPATH environment variable? Did you " | |
"forget to activate a virtual environment?" | |
) from exc | |
execute_from_command_line(sys.argv) | |
if __name__ == '__main__': | |
main() |
This file contains 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
class DemonstratesConflictMiddleware: | |
def __init__(self, get_response): | |
self.get_response = get_response | |
def __call__(self, request): | |
response = self.get_response(request) | |
return response | |
def process_template_response(self, request, response): | |
return response |
This file contains 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
[[package]] | |
category = "main" | |
description = "ASGI specs, helper code, and adapters" | |
name = "asgiref" | |
optional = false | |
python-versions = ">=3.5" | |
version = "3.2.10" | |
[package.extras] | |
tests = ["pytest", "pytest-asyncio"] | |
[[package]] | |
category = "main" | |
description = "Python package for providing Mozilla's CA Bundle." | |
name = "certifi" | |
optional = false | |
python-versions = "*" | |
version = "2020.6.20" | |
[[package]] | |
category = "main" | |
description = "A high-level Python Web framework that encourages rapid development and clean, pragmatic design." | |
name = "django" | |
optional = false | |
python-versions = ">=3.6" | |
version = "3.1rc1" | |
[package.dependencies] | |
asgiref = ">=3.2.10,<3.3.0" | |
pytz = "*" | |
sqlparse = ">=0.2.2" | |
[package.extras] | |
argon2 = ["argon2-cffi (>=16.1.0)"] | |
bcrypt = ["bcrypt"] | |
[[package]] | |
category = "main" | |
description = "World timezone definitions, modern and historical" | |
name = "pytz" | |
optional = false | |
python-versions = "*" | |
version = "2020.1" | |
[[package]] | |
category = "main" | |
description = "Python client for Sentry (https://sentry.io)" | |
name = "sentry-sdk" | |
optional = false | |
python-versions = "*" | |
version = "0.16.2" | |
[package.dependencies] | |
certifi = "*" | |
urllib3 = ">=1.10.0" | |
[package.extras] | |
aiohttp = ["aiohttp (>=3.5)"] | |
beam = ["apache-beam (>=2.12)"] | |
bottle = ["bottle (>=0.12.13)"] | |
celery = ["celery (>=3)"] | |
django = ["django (>=1.8)"] | |
falcon = ["falcon (>=1.4)"] | |
flask = ["flask (>=0.11)", "blinker (>=1.1)"] | |
pure_eval = ["pure-eval", "executing", "asttokens"] | |
pyspark = ["pyspark (>=2.4.4)"] | |
rq = ["rq (>=0.6)"] | |
sanic = ["sanic (>=0.8)"] | |
sqlalchemy = ["sqlalchemy (>=1.2)"] | |
tornado = ["tornado (>=5)"] | |
[[package]] | |
category = "main" | |
description = "Non-validating SQL parser" | |
name = "sqlparse" | |
optional = false | |
python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" | |
version = "0.3.1" | |
[[package]] | |
category = "main" | |
description = "HTTP library with thread-safe connection pooling, file post, and more." | |
name = "urllib3" | |
optional = false | |
python-versions = "*" | |
version = "1.22" | |
[package.extras] | |
secure = ["pyOpenSSL (>=0.14)", "cryptography (>=1.3.4)", "idna (>=2.0.0)", "certifi", "ipaddress"] | |
socks = ["PySocks (>=1.5.6,<1.5.7 || >1.5.7,<2.0)"] | |
[metadata] | |
content-hash = "4b522a803d2c78ff49ba27ffec5d0e4c121cddbe3bfb0c15fec556a340efa446" | |
python-versions = ">=3.6" | |
[metadata.files] | |
asgiref = [ | |
{file = "asgiref-3.2.10-py3-none-any.whl", hash = "sha256:9fc6fb5d39b8af147ba40765234fa822b39818b12cc80b35ad9b0cef3a476aed"}, | |
{file = "asgiref-3.2.10.tar.gz", hash = "sha256:7e51911ee147dd685c3c8b805c0ad0cb58d360987b56953878f8c06d2d1c6f1a"}, | |
] | |
certifi = [ | |
{file = "certifi-2020.6.20-py2.py3-none-any.whl", hash = "sha256:8fc0819f1f30ba15bdb34cceffb9ef04d99f420f68eb75d901e9560b8749fc41"}, | |
{file = "certifi-2020.6.20.tar.gz", hash = "sha256:5930595817496dd21bb8dc35dad090f1c2cd0adfaf21204bf6732ca5d8ee34d3"}, | |
] | |
django = [ | |
{file = "Django-3.1rc1-py3-none-any.whl", hash = "sha256:e5893668d8981a35a5bed8287c56363f83181566037e5beabe09d2a29c8bf4ce"}, | |
{file = "Django-3.1rc1.tar.gz", hash = "sha256:a805872093720658e2b858a51c1b43a634790df073b732832d6b8080c38d6263"}, | |
] | |
pytz = [ | |
{file = "pytz-2020.1-py2.py3-none-any.whl", hash = "sha256:a494d53b6d39c3c6e44c3bec237336e14305e4f29bbf800b599253057fbb79ed"}, | |
{file = "pytz-2020.1.tar.gz", hash = "sha256:c35965d010ce31b23eeb663ed3cc8c906275d6be1a34393a1d73a41febf4a048"}, | |
] | |
sentry-sdk = [ | |
{file = "sentry-sdk-0.16.2.tar.gz", hash = "sha256:38bb09d0277117f76507c8728d9a5156f09a47ac5175bb8072513859d19a593b"}, | |
{file = "sentry_sdk-0.16.2-py2.py3-none-any.whl", hash = "sha256:2de15b13836fa3522815a933bd9c887c77f4868071043349f94f1b896c1bcfb8"}, | |
] | |
sqlparse = [ | |
{file = "sqlparse-0.3.1-py2.py3-none-any.whl", hash = "sha256:022fb9c87b524d1f7862b3037e541f68597a730a8843245c349fc93e1643dc4e"}, | |
{file = "sqlparse-0.3.1.tar.gz", hash = "sha256:e162203737712307dfe78860cc56c8da8a852ab2ee33750e33aeadf38d12c548"}, | |
] | |
urllib3 = [ | |
{file = "urllib3-1.22-py2.py3-none-any.whl", hash = "sha256:06330f386d6e4b195fbfc736b297f58c5a892e4440e54d294d7004e3a9bbea1b"}, | |
{file = "urllib3-1.22.tar.gz", hash = "sha256:cc44da8e1145637334317feebd728bd869a35285b93cbb4cca2577da7e62db4f"}, | |
] |
This file contains 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
[tool.poetry] | |
name = "sentry_bug" | |
version = "0.1.0" | |
description = "" | |
authors = [] | |
[tool.poetry.dependencies] | |
python = ">=3.6" | |
django = ">=3.1b1" | |
sentry-sdk = "^0.16.2" | |
[tool.poetry.dev-dependencies] | |
[build-system] | |
requires = ["poetry>=0.12"] | |
build-backend = "poetry.masonry.api" |
This file contains 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
""" | |
Django settings for project_name project. | |
Generated by 'django-admin startproject' using Django 3.1b1. | |
For more information on this file, see | |
https://docs.djangoproject.com/en/dev/topics/settings/ | |
For the full list of settings and their values, see | |
https://docs.djangoproject.com/en/dev/ref/settings/ | |
""" | |
from pathlib import Path | |
# Build paths inside the project like this: BASE_DIR / 'subdir'. | |
BASE_DIR = Path(__file__).resolve(strict=True).parent.parent | |
# Quick-start development settings - unsuitable for production | |
# See https://docs.djangoproject.com/en/dev/howto/deployment/checklist/ | |
# SECURITY WARNING: keep the secret key used in production secret! | |
SECRET_KEY = '--development-only--' | |
# SECURITY WARNING: don't run with debug turned on in production! | |
DEBUG = True | |
ALLOWED_HOSTS = [] | |
# Application definition | |
INSTALLED_APPS = [ | |
'django.contrib.admin', | |
'django.contrib.auth', | |
'django.contrib.contenttypes', | |
'django.contrib.sessions', | |
'django.contrib.messages', | |
'django.contrib.staticfiles', | |
] | |
MIDDLEWARE = [ | |
'django.middleware.security.SecurityMiddleware', | |
'django.contrib.sessions.middleware.SessionMiddleware', | |
'django.middleware.common.CommonMiddleware', | |
'django.middleware.csrf.CsrfViewMiddleware', | |
'django.contrib.auth.middleware.AuthenticationMiddleware', | |
'django.contrib.messages.middleware.MessageMiddleware', | |
'django.middleware.clickjacking.XFrameOptionsMiddleware', | |
'middleware.DemonstratesConflictMiddleware', | |
] | |
ROOT_URLCONF = 'urls' | |
TEMPLATES = [ | |
{ | |
'BACKEND': 'django.template.backends.django.DjangoTemplates', | |
'DIRS': [], | |
'APP_DIRS': True, | |
'OPTIONS': { | |
'context_processors': [ | |
'django.template.context_processors.debug', | |
'django.template.context_processors.request', | |
'django.contrib.auth.context_processors.auth', | |
'django.contrib.messages.context_processors.messages', | |
], | |
}, | |
}, | |
] | |
# Database | |
# https://docs.djangoproject.com/en/dev/ref/settings/#databases | |
DATABASES = { | |
'default': { | |
'ENGINE': 'django.db.backends.sqlite3', | |
'NAME': BASE_DIR / 'db.sqlite3', | |
} | |
} | |
# Password validation | |
# https://docs.djangoproject.com/en/dev/ref/settings/#auth-password-validators | |
AUTH_PASSWORD_VALIDATORS = [ | |
{ | |
'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', | |
}, | |
{ | |
'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', | |
}, | |
{ | |
'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', | |
}, | |
{ | |
'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', | |
}, | |
] | |
# Internationalization | |
# https://docs.djangoproject.com/en/dev/topics/i18n/ | |
LANGUAGE_CODE = 'en-us' | |
TIME_ZONE = 'UTC' | |
USE_I18N = True | |
USE_L10N = True | |
USE_TZ = True | |
# Static files (CSS, JavaScript, Images) | |
# https://docs.djangoproject.com/en/dev/howto/static-files/ | |
STATIC_URL = '/static/' | |
# Sentry | |
import sentry_sdk | |
from sentry_sdk.integrations.django import DjangoIntegration | |
sentry_sdk.init( | |
dsn="", | |
integrations=[DjangoIntegration()], | |
) | |
This file contains 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
"""sentry_bug URL Configuration""" | |
from django.contrib import admin | |
from django.urls import path | |
urlpatterns = [ | |
path('', admin.site.urls), | |
] |
This file contains 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
""" | |
WSGI config for project_name project. | |
It exposes the WSGI callable as a module-level variable named application. | |
For more information on this file, see | |
https://docs.djangoproject.com/en/dev/howto/deployment/wsgi/ | |
""" | |
import os | |
from django.core.wsgi import get_wsgi_application | |
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'sentry_bug.settings') | |
application = get_wsgi_application() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment