Skip to content

Commit 301524d

Browse files
committed
readme, config example
1 parent bf61d15 commit 301524d

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

README.rst

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,13 @@ Read more about API here -> https://github.com/DevAlone/proxy_py/tree/master/doc
189189

190190
How to contribute?
191191
******************
192-
*TODO: write guide about it*
192+
193+
Just fork, do your changes(implement new collector, fix a bug
194+
or whatever you want) and create pull request.
195+
196+
Here are some useful guides:
197+
198+
`How to create a collector <https://proxy-py.readthedocs.io/en/latest/guides/how_to_create_collector.html>`_
193199

194200
How to test it?
195201
***************

config_examples/settings.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
from ._settings import *
22

3+
DEBUG = False
4+
35
DATABASE_CONNECTION_KWARGS['database'] = 'proxy_py'
46
DATABASE_CONNECTION_KWARGS['user'] = 'proxy_py'
57
DATABASE_CONNECTION_KWARGS['password'] = 'proxy_py'
68

7-
DEBUG = False
9+
PROXY_PROVIDER_SERVER_ADDRESS = {
10+
'HOST': '0.0.0.0',
11+
'PORT': 55555,
12+
}

0 commit comments

Comments
 (0)