https://github.com/mongodb/deluge
https://github.com/mongodb/deluge
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mongodb/deluge
- Owner: mongodb
- Created: 2016-07-21T15:02:10.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2023-04-10T12:55:09.000Z (about 2 years ago)
- Last Synced: 2025-01-29T09:43:51.255Z (3 months ago)
- Language: Python
- Size: 53.7 KB
- Stars: 4
- Watchers: 27
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[](https://travis-ci.org/i80and/deluge)
Deluge
======A simple web feedback server.
## Local Development
Install all development dependencies:
```shell
pipenv install --dev
```Ensure you are running a local `mongod` instance on default port 27017. To run the Deluge server:
```shell
CONNECTION_STRING="mongodb://localhost:27017" pipenv run python3 -m deluge
```You 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:
```shell
make lint test
```