From: Guillaume Pellerin Date: Tue, 30 Sep 2014 21:33:04 +0000 (+0200) Subject: add Docker image infos, add new deps X-Git-Tag: 0.6~4^2~33^2~5 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=2a4c3a2cc11985e3222d7952f9d629ab79025ad5;p=timeside.git add Docker image infos, add new deps --- diff --git a/README.rst b/README.rst index 58ac484..32b2661 100644 --- a/README.rst +++ b/README.rst @@ -296,6 +296,17 @@ Optional: User Interfaces =============== +Python +------- + +Of course all the TimeSide are available in our beloved python envionment. +As IPython is really great for discovering objects with completion, writing notebooks, we strongly advise to install and use it:: + + sudo apt-get install ipython + ipython + >>> import timeside + + Shell ------ @@ -421,6 +432,24 @@ To stop the virtual box:: vagrant halt +Docker +------- + +Docker is a great tool for developping and deploying processing environments! Our docker container includes all the necessary packages and environments for development and production with TimeSide. + +Simply pull our dev image and run:: + + sudo docker pull yomguy/timeside + sudo docker run -i -t yomguy/timeside bash + +To start a development process, it is advised to checkout the dev branch:: + + cd /root/apps/TimeSide + git checkout dev + +More infos: https://registry.hub.docker.com/u/yomguy/timeside/ + + Sponsors and Partners ===================== diff --git a/doc/source/conf.py b/doc/source/conf.py index c9184a6..d36a1ed 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -106,7 +106,10 @@ modindex_common_prefix = ['timeside.'] # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. -html_theme = 'default' +# html_theme = 'default' +import sphinx_rtd_theme +html_theme = "sphinx_rtd_theme" +html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the diff --git a/setup.py b/setup.py index 72a2846..566ead5 100755 --- a/setup.py +++ b/setup.py @@ -61,7 +61,8 @@ setup( 'djangorestframework', 'south', 'traits', - 'networkx' + 'networkx', + 'sphinx_rtd_theme', ], platforms=['OS Independent'], license='Gnu Public License V2',