b8aabba9f98d3c5ff08b608cd0f73d0ca3dbbeea
[unfold.git] / myslice / config.py
1 class Config:
2
3     # production should use https of course
4     manifold_url = "http://manifold.pl.sophia.inria.fr:7080/"
5
6     # exporting these details to js
7     @staticmethod
8     def manifold_js_export ():
9         return "var MANIFOLD_URL = '%s';"%Config.manifold_url;