We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 54d0fa6 + 7c2f752 commit 05f478eCopy full SHA for 05f478e
README.md
@@ -4,6 +4,26 @@ Django Mask Postgres Data
4
Adds a management command to your Django project which allows you to create a (sort of) pg_dump
5
of your data, with sepcific fields masked by given values.
6
7
+Installation
8
+------------
9
+
10
+Install with pip:
11
12
+`pip install django-maskpostgresdata`
13
14
+And add `maskpostgresdata` to your `INSTALLED_APPS`:
15
16
+```
17
+INSTALLED_APPS = [
18
+ ...
19
+ maskpostgresdata,
20
21
+]
22
23
24
+Usage
25
+-----
26
27
To configure, add a dictionary called `MASKER_FIELDS` to your settings using the following format::
28
29
```
0 commit comments