feat(uti): Add structured menu for stats
[csit.git] / resources / tools / dash / app / wsgi.py
index c2832e2..ab18bbf 100644 (file)
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-from pal import init_app
 
-app = init_app()
+from pal import app
+
 
 if __name__ == "__main__":
     # Main entry point.
+    app.debug = True
     app.run(host="0.0.0.0")