10 lines
334 B
Python
10 lines
334 B
Python
# This file is where you keep secret settings, passwords, and tokens!
|
|
# If you put them in the code you risk committing that info or sharing it
|
|
|
|
secrets = {
|
|
'ssid' : 'yourssid',
|
|
'password' : 'yourpassword',
|
|
'timezone' : -5, # this is offset from UTC
|
|
'aio_username' : 'youraiousername',
|
|
'aio_key' : 'youraiokey',
|
|
}
|