8d2d28b36d041060f1cbd20f277d53793acdc3d2
[myslice.git] / myslice / config.py
1 class Config:
2
3     # production should use https of course
4
5 # this version of unfold expects a backend that runs a new API
6 # xxx
7 # -- although currently (april 2013) there are missing features
8 # e.g. GetSession and GetPersons are still there -- they should go away
9 # also the code for retrieving metadata does not work as-is
10 #    manifold_url = "http://localhost:7080/"
11     manifold_url = "http://dev.myslice.info:7080/"
12
13     # exporting these details to js
14     @staticmethod
15     def manifold_js_export ():
16         return "var MANIFOLD_URL = '%s';\n"%Config.manifold_url;