From: Guillaume Pellerin Date: Mon, 28 Mar 2016 23:10:14 +0000 (+0200) Subject: fix waiting for DB X-Git-Tag: 1.6b~1^2~5 X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=83c546664c5ff0a3f8287db21ed50f51883588e3;p=telemeta.git fix waiting for DB --- diff --git a/README.rst b/README.rst index 45d2814e..283dbdd5 100644 --- a/README.rst +++ b/README.rst @@ -52,6 +52,18 @@ It is mostly written in Python and JavaScript. The processing engine of Telemeta is provided by `TimeSide `_, an open web audio processing framework written in Python. +Funding and support +=================== + +To fund the project and continue our fast development process, we need your explicit support. So if you use Telemeta in production or even in a development or experimental setup, please let us know by: + +* staring or forking the project on `GitHub `_ +* tweeting something to `@parisson_studio `_ or `@telemeta `_ +* drop us an email + +Thanks for your help! + + Changes ======== @@ -118,13 +130,11 @@ On Linux, first install `Git `_, `Docker engine `_ and open a Docker Quickstart Terminal. -Then run these commands:: +Then clone Telemeta:: git clone --recursive https://github.com/Parisson/Telemeta.git cd Telemeta - docker-compose up db -Press CTRL-C to exit (the last command is needed to init the database). Start ===== @@ -135,12 +145,6 @@ For a production environment setup:: Then browse the app at http://localhost:8000/ (replacing 'localhost' by the IP given by the docker terminal on OSX or Windows) -For a development environment setup:: - - docker-compose -f docker-compose.yml -f env/dev.yml up - -Then browse the app at http://localhost:9000/ (replacing 'localhost' by the IP given by the docker terminal on OSX or Windows) - To start the application in DEBUG mode:: docker-compose -f docker-compose.yml -f env/debug.yml up @@ -194,15 +198,24 @@ Development :alt: Coverage -You are welcome to participate to the development of the Telemeta project which is hosted on `GitHub `_. +To start the application in a development environment setup:: + + cd Telemeta + git pull + git checkout dev + docker-compose -f docker-compose.yml -f env/dev.yml up + +Then browse the app at http://localhost:9000/ (replacing 'localhost' by the IP given by the docker terminal on OSX or Windows) + +You are welcome to participate to the development by forking the Telemeta project on `GitHub `_. -The development package and environment is available through our `DevBox `_ +To build your own composition:: + docker-compose -f docker-compose.yml -f env/dev.yml -f env/build.yml build -Bugs and feedback -================= -You are welcome to freely use this application in accordance with its licence. +Bugs, issues, ideas +=================== If you find some bugs or have good ideas for enhancement, please leave a issue on GitHub with the right label: @@ -210,7 +223,7 @@ https://github.com/Parisson/Telemeta/issues/new You can also leave some ticket to request some new interesting features for the next versions and tweet your ideas to `@telemeta `_. -And even if Telemeta suits you, please give us some feedback ! +And remember: even if Telemeta suits you, please give us some feedback ! Contact diff --git a/app/wait.py b/app/wait.py index 19576830..a1dc25dd 100644 --- a/app/wait.py +++ b/app/wait.py @@ -14,6 +14,6 @@ while not up: except: i += 1 print 'initialization...' - if i > 2: + if i > 10: raise time.sleep(1)