Move hotspots to separate service

This commit is contained in:
2024-04-14 11:16:04 -05:00
parent 6dbb44f5c0
commit 7ae923d58f
11 changed files with 38 additions and 2421 deletions

8
src/config.py Normal file
View File

@@ -0,0 +1,8 @@
from os import environ as env
# automatically updates some dev envs. need to remove for production.
try:
__import__('envs.py')
except ImportError:
pass
HotspotsURL = env.get('HotspotsURL', 'https://asimonson.com/hotspots')