mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2025-06-28 14:45:13 +00:00
Remove all frontend related stuff
This commit is contained in:
19
lib/debug.py
19
lib/debug.py
@ -1,19 +0,0 @@
|
||||
from glob import iglob as glob
|
||||
from itertools import chain
|
||||
|
||||
from tornado.autoreload import watch
|
||||
|
||||
|
||||
# yo dawg, we heard you like generators, so now you can generate generators
|
||||
# with generators
|
||||
def _static_files():
|
||||
return chain.from_iterable(
|
||||
glob(pattern) for pattern in (
|
||||
'static/dist/*.js', 'static/*.css', 'templates/*htm?'
|
||||
)
|
||||
)
|
||||
|
||||
|
||||
def watch_static_files():
|
||||
for file in _static_files():
|
||||
watch(file)
|
Reference in New Issue
Block a user