Getting Apache Superset deployed on Pythonanywhere Getting Apache Superset deployed on Pythonanywhere flask flask

Getting Apache Superset deployed on Pythonanywhere


giles from Pythonanywhere suggested this simple solution:

import supersetfrom superset import app as application

which worked instantly. E.g. the whole flask file looks like

import sysimport supersetproject_home = u'/home/tmo/testsite'if project_home not in sys.path:    sys.path = [project_home] + sys.pathfrom superset import app as application

where only the last line is necessary for superset to run.