You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

ngits-drf-sentry-tunnel

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ngits-drf-sentry-tunnel

Sentry tunnel for DRF

2.0.0
pipPyPI
Maintainers
1

ngits-drf-sentry-tunnel

Olá!

Setup

  • Install using pip:

::

    pip install ngits-drf-sentry-tunnel

2. Change your ``settings`` file:

::

import os

...

INSTALLED_APPS = [
    ...
    "rest_framework",
    "sentry_tunnel"
]

...

SENTRY_HOST = "sentry.local"
SENTRY_PROJECT_IDS = ["4"]

3. Add paths to your urls.py file:


::

    from django.urls import path, include

    urlpatterns = [
        ...
        path("", include("sentry_tunnel.urls"))
    ]

Above example results: ``http://127.0.0.1:8000/tunnel/`` API endpoint URL

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts