Remove all frontend related stuff

This commit is contained in:
Bálint Bokros
2018-01-10 16:25:23 +01:00
parent 3a41423596
commit 7cc5268f9b
21 changed files with 1 additions and 3234 deletions

View File

@ -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)