3.1.13 • Published 7 years ago
rigning v3.1.13
Deluge
A simple web feedback server.
Local Development
Install all development dependencies:
pipenv install --devEnsure you are running a local mongod instance on default port 27017. To run the Deluge server:
CONNECTION_STRING="mongodb://localhost:27017" pipenv run python3 -m delugeYou can now make requests to the server at http://localhost:4000.
Troubleshooting
If starting the server fails, ensure that ssl=False in deluge/application.py for development purposes.
Linting
To lint before pushing changes to GitHub:
make lint test