Metadata-Version: 2.1
Name: epfs
Version: 1.7
Summary: epfs is a Django app to sharing file.
Home-page: https://github.com/epg900/epfs.git
Author: epg
Author-email: epg900@gmail.com
License: GNU GENERAL PUBLIC LICENSE
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

EPFS
=========
epfs is a Django sharing file.

Quick start
-----------
1.Add "epfs" to your INSTALLED_APPS in your project setting.py file:
```
INSTALLED_APPS = [
...,
'epfs',
]
```

2.Include the epfs URLconf in your project urls.py like this:

```
path('epfs/', include('epfs.urls')),
```

3.Run ``python manage.py makemigrations``(optional) and ``python manage.py migrate``  to create the epfs models.


4.Visit http://127.0.0.1:8000/epfs/ to share files.

