From 54cdb58a152bcb9f7674e98083544d0f3ebefcae Mon Sep 17 00:00:00 2001 From: Bryan Brancotte <bryan.brancotte@pasteur.fr> Date: Wed, 26 Feb 2025 11:13:24 +0100 Subject: [PATCH] adapt README.rst --- README.rst | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/README.rst b/README.rst index 3a7c18e..a95937a 100644 --- a/README.rst +++ b/README.rst @@ -1,11 +1,9 @@ ============ -django-kubernetes-probes +django-csp-mail-reports ============ -django-kubernetes-probes is a Django app to conduct web-based polls. For each -question, visitors can choose between a fixed number of answers. - -Detailed documentation is in the "docs" directory. +django-csp-mail-reports is a Django app to forward csp reports to admin +while preventing DOS with cooldown. Quick start ----------- @@ -14,13 +12,13 @@ Quick start INSTALLED_APPS = [ ..., - "django_kubernetes_probes", + "cspmailreports", ] 2. Include the polls URLconf in your project urls.py like this:: - path('', include('django_kubernetes_probes.urls')), + path('', include('cspmailreports.urls')), 4. Start the development server. -5. Visit the ``/probe_alive/`` URL to see that you app is alive. +5. Post a report to ``/report/``. -- GitLab