Skip to content
Snippets Groups Projects
Commit 815191df authored by Olivia Doppelt-Azeroual's avatar Olivia Doppelt-Azeroual
Browse files
parents 78ebdd11 f921195a
No related branches found
No related tags found
No related merge requests found
......@@ -4,6 +4,7 @@ test-centos7:
script:
- yum install -y epel-release
- yum install install -y python34-pip python34-devel
- yum install -y gcc graphviz graphviz-devel
- cd ippisite
- pip3 install -r requirements.txt
- python3 manage.py test
\ No newline at end of file
......@@ -37,6 +37,7 @@ INSTALLED_APPS = [
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'django_extensions',
'bootstrap3',
'ippidb'
]
......@@ -120,3 +121,12 @@ USE_TZ = True
# https://docs.djangoproject.com/en/1.10/howto/static-files/
STATIC_URL = '/static/'
# required to use django-extensions to draw database diagram
# to do so type
#$ ./manage.py graph_models -a > db.dot
#$ dot db.dot -T png -odb.png
GRAPH_MODELS = {
'all_applications': True,
'group_models': True,
}
Django
django-bootstrap3
bioservices
\ No newline at end of file
bioservices
django-extensions
pygraphviz
pydot
pyparsing
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment