Skip to content

Commit 05f478e

Browse files
committed
Merge branch 'master' of github.com:developersociety/django-maskpostgresdata
2 parents 54d0fa6 + 7c2f752 commit 05f478e

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,26 @@ Django Mask Postgres Data
44
Adds a management command to your Django project which allows you to create a (sort of) pg_dump
55
of your data, with sepcific fields masked by given values.
66

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+
727
To configure, add a dictionary called `MASKER_FIELDS` to your settings using the following format::
828

929
```

0 commit comments

Comments
 (0)