Skip to content

Provide SFTP services with Django, ProFTPd and MySQL.

License

Notifications You must be signed in to change notification settings

devopsmakers/dj-prosftpd

Repository files navigation

Django ProSFTPd

https://travis-ci.org/devopsmakers/dj-prosftpd.svg?branch=master

Integrate Django and ProSFTPd with MySQL to provide SFTP services

Documentation

The full documentation is at https://dj-prosftpd.readthedocs.io.

Quickstart

Install Django ProSFTPd:

pip install dj-prosftpd

Add it to your INSTALLED_APPS:

INSTALLED_APPS = (
    ...
    'dj_prosftpd.apps.DjProSFTPdConfig',
    ...
)

Add Django ProSFTPd's URL patterns:

from dj_prosftpd import urls as dj_prosftpd_urls


urlpatterns = [
    ...
    url(r'^', include(dj_prosftpd_urls)),
    ...
]

Features

  • TODO

Running Tests

Does the code actually work?

source <YOURVIRTUALENV>/bin/activate
(myenv) $ pip install tox
(myenv) $ tox

Credits

Tools used in rendering this package:

About

Provide SFTP services with Django, ProFTPd and MySQL.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published