Move config.py to config-example.py, add README.

This commit is contained in:
Sergey Morozov 2017-09-19 21:37:26 +03:00
parent 3ce8e652db
commit 9d1616ebf8
4 changed files with 17 additions and 29 deletions

3
.gitignore vendored
View File

@ -1 +1,2 @@
**/__pycache__
**/__pycache__
/config.py

1
README Normal file
View File

@ -0,0 +1 @@
Move config-example.py to config.py and edit it.

14
config-example.py Normal file
View File

@ -0,0 +1,14 @@
displays = [
{
'address': '192.168.0.1',
'id': 1
},
{
'address': '192.168.0.2',
'id': 2
},
{
'address': '192.168.0.3',
'id': 3
}
]

View File

@ -1,28 +0,0 @@
# Example:
# displays = [
# {
# 'address': '192.168.0.1',
# 'id': 1
# },
# {
# 'address': '192.168.0.2',
# 'id': 2
# },
# {
# 'address': '192.168.0.3',
# 'id': 3
# }
# ]
displays = [
{
'address': '10.106.102.116',
'id': 1
},
{
'address': '192.168.12.34',
'id': 3
}
]