# See the License for the specific language governing permissions and
# limitations under the License.
-FROM parisson/timeside-diadems:latest-dev
+# FROM parisson/timeside:latest-dev
+FROM timeside_app
MAINTAINER Guillaume Pellerin <yomguy@parisson.com>, Thomas fillon <thomas@parisson.com>
build: .
volumes_from:
- home
- command: /bin/sh /opt/TimeSide/examples/deploy/celery_app.sh
+ command: /bin/sh /opt/Telemeta/examples/deploy/celery_app.sh
links:
- rabbitmq
- db
'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'mysql', 'sqlite3' or 'oracle'.
'USER': 'root', # Not used with sqlite3.
'PASSWORD': 'mysecretpassword', # Not used with sqlite3.
- 'NAME': 'timeside',
+ 'NAME': 'telemeta',
'HOST': 'db', # Set to empty string for localhost. Not used with sqlite3.
'PORT': '3306', # Set to empty string for default. Not used with sqlite3.
}
errno = pytest.main(self.pytest_args)
sys.exit(errno)
+
CLASSIFIERS = ['Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Science/Research',
'django-suit',
'django-google-tools',
'django-ipauth',
+ 'django-celery',
'timeside>=0.7',
'south',
'sorl-thumbnail',
'psutil',
'pyyaml',
'python-ebml',
- # 'mysql',
'zipstream',
],
tests_require=['pytest-django', 'pytest-cov', 'factory-boy'],
# Provide a test command through django-setuptest
cmdclass={'test': PyTest},
- dependency_links = ['https://github.com/yomguy/django-json-rpc/tarball/0.6.2#egg=django-json-rpc-0.6.2'],
platforms=['OS Independent'],
license='CeCILL v2',
classifiers = CLASSIFIERS,
url(r'^', include('jqchat.urls')),
+ url(r'^timeside/', include('timeside.server.urls')),
+
)