- TODO
- TODO
- Install django-sftp by pip.
$ pip install django-sftp
- Add it to your
INSTALLED_APPS
:
INSTALLED_APPS = (
...
'django_sftp',
...
)
- Migrate app.
$ ./manage.py migrate
- Create user account.
$ ./manage.py createsuperuser --username user
- Create SFTP user group.
$ ./manage.py createsftpusergroup test
- Create SFTP account.
$ ./manage.py createftpuseraccount user test
- Generate RSA key
$ ssh-keygen -t rsa -b 4096 -C "[email protected]" -m PEM
- Run SFTP server
$ ./manage.py sftpserver :11121 -k rsa
- TODO
Contributions are very welcome.
To learn more, see the Contributor Guide
.
Distributed under the terms of the MIT_ license, Django SFTP is free and open source software.
If you encounter any problems,
please file an issue
along with a detailed description.
- MIT: http://opensource.org/licenses/MIT
- file an issue: https://github.com/vahaah/django-sftp/issues
- pip: https://pip.pypa.io/
- Contributor Guide: CONTRIBUTING.rst