diff options
author | Galen Guyer <galen@galenguyer.com> | 2020-10-31 12:05:31 -0400 |
---|---|---|
committer | Galen Guyer <galen@galenguyer.com> | 2020-10-31 12:05:31 -0400 |
commit | efab60744e7284e245bbd6266755ab3ca1a37200 (patch) | |
tree | b79c22eebbdaf16c1d800e596bc7c49a772662d2 /README.md | |
parent | 1009968ea0ca43ef1b1bc421f7694f1f70707948 (diff) |
Rename demo to poller
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -18,10 +18,10 @@ Locally running this application should be pretty simple. 2. Install dependencies * `pip install -r requirements.txt` 3. Run the app - * `gunicorn demo:APP --bind=localhost:5000` + * `gunicorn poller:APP --bind=localhost:5000` 4. Visit localhost:5000 in your web browser. ## Linting This demo uses pylint. -Travis CI will automatically run pylint on commits and PRs, but you can also run pylint manually, using `pylint demo`. +Travis CI will automatically run pylint on commits and PRs, but you can also run pylint manually, using `pylint poller`. The pylint_quotes plugin is loaded by [the pylintrc](./.pylintrc) and will ensure standardised quotation mark formats. |