removed config.py
This commit is contained in:
parent
a26300f86c
commit
17e18e4b13
1 changed files with 0 additions and 37 deletions
|
@ -1,37 +0,0 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Where to store SQLite database
|
||||
path_db = '/var/ttn_tracker/ttn_tracker_database.db'
|
||||
|
||||
# Period to download new data and display on the map (recommended not to go lower than 10 seconds)
|
||||
refresh_period_seconds = 15
|
||||
|
||||
# Where the map initially loads
|
||||
start_lat = 35.978781
|
||||
start_lon = -77.855346
|
||||
|
||||
# TTN Cluster
|
||||
cluster = "nam1"
|
||||
|
||||
# TTN Application
|
||||
application = "ttn_application"
|
||||
app_key = "ttn-account-TTN_APP_KEY"
|
||||
|
||||
# Application devices
|
||||
devices = [
|
||||
"device_01",
|
||||
"device_02"
|
||||
]
|
||||
|
||||
# Where to place gateway markers
|
||||
gateway_locations = [
|
||||
('Gateway 01', 35.978781, -77.855346),
|
||||
('Gateway 02', 35.978781, -77.655346)
|
||||
]
|
||||
|
||||
bing_api_key = ''
|
||||
|
||||
|
||||
def config_app(app):
|
||||
app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///{db}'.format(db=path_db)
|
||||
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = False
|
||||
return app
|
Loading…
Add table
Reference in a new issue