Skip to content

Commit 780e7ee

Browse files
authored
Update README.md
1 parent ad21b4e commit 780e7ee

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Then add "easy" to your django INSTALLED_APPS:
5050
```
5151

5252
### Usage
53-
#### Get all your Django app CRUD APIs up and running
53+
#### Get all your Django app CRUD APIs up and running in < 1 min
5454
In your Django project next to urls.py create new apis.py file:
5555
```
5656
from easy.main import EasyAPI
@@ -93,6 +93,8 @@ Also, configuration is possible for each model, via ApiMeta class:
9393
- `sensitive_fields`: fields to be ignored
9494

9595
```
96+
97+
Example:
9698
class Category(TestBaseModel):
9799
title = models.CharField(max_length=100)
98100
status = models.PositiveSmallIntegerField(default=1, null=True)

0 commit comments

Comments
 (0)