Skip to content

Commit

Permalink
chore: prepare for release
Browse files Browse the repository at this point in the history
  • Loading branch information
jerivas committed Feb 1, 2022
1 parent 16be2e6 commit 5870881
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
.venv
.vscode
/dist
*.sqlite3
*.egg-info
__pycache__
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

File and folder-based routes for Django views.

## Installation

```
pip install django-file-router
```

## The problem

Imagine you are creating a Django project with some CRUD views for your objects. How many files do you need to allow users to create a new object?
Expand Down
2 changes: 1 addition & 1 deletion file_router/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from django.template import RequestContext, Template
from django.urls import path

__version__ = "9999dev0" # Managed by semantic-release, do not edit
__version__ = "0.1.0"


def file_patterns(start_dir, append_slash=False):
Expand Down

0 comments on commit 5870881

Please sign in to comment.