diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..09382c9 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,50 @@ +Mako==0.7.3 +MarkupSafe==0.15 +PAM==0.4.2 +Pillow==2.0.0 +Twisted-Core==12.3.0 +Twisted-Names==12.3.0 +Twisted-Web==12.3.0 +adium-theme-ubuntu==0.3.3 +apt-xapian-index==0.45 +argparse==1.2.1 +chardet==2.0.1 +configglue==1.0 +debtagshw==0.1 +defer==1.0.6 +dirspec==4.2.0 +distribute==0.6.34 +django-tastypie==0.9.15 +duplicity==0.6.21 +httplib2==0.7.7 +lxml==3.1.0 +mimeparse==0.1.3 +oauthlib==0.3.7 +oneconf==0.3.3 +pexpect==2.4 +piston-mini-client==0.7.5 +protobuf==2.4.1 +pyOpenSSL==0.13 +pycrypto==2.6 +pycups==1.9.62 +pycurl==7.19.0 +pygobject==3.8.0 +pyinotify==0.9.3 +pyserial==2.6 +pysmbc==1.0.13 +python-apt==0.8.8ubuntu6 +python-dateutil==2.1 +python-debian==0.1.21-nmu2ubuntu1 +pyxdg==0.25 +reportlab==2.6 +rhythmbox-ubuntuone==4.2.0 +sessioninstaller==0.0.0 +six==1.2.0 +software-center-aptd-plugins==0.0.0 +system-service==0.1.6 +ubuntuone-storage-protocol==4.2.0 +unity-lens-photos==0.9 +virtualenv==1.9.1 +wsgiref==0.1.2 +xdiagnose==3.5 +zope.interface==4.0.5 diff --git a/requirments.txt b/requirments.txt new file mode 100644 index 0000000..09382c9 --- /dev/null +++ b/requirments.txt @@ -0,0 +1,50 @@ +Mako==0.7.3 +MarkupSafe==0.15 +PAM==0.4.2 +Pillow==2.0.0 +Twisted-Core==12.3.0 +Twisted-Names==12.3.0 +Twisted-Web==12.3.0 +adium-theme-ubuntu==0.3.3 +apt-xapian-index==0.45 +argparse==1.2.1 +chardet==2.0.1 +configglue==1.0 +debtagshw==0.1 +defer==1.0.6 +dirspec==4.2.0 +distribute==0.6.34 +django-tastypie==0.9.15 +duplicity==0.6.21 +httplib2==0.7.7 +lxml==3.1.0 +mimeparse==0.1.3 +oauthlib==0.3.7 +oneconf==0.3.3 +pexpect==2.4 +piston-mini-client==0.7.5 +protobuf==2.4.1 +pyOpenSSL==0.13 +pycrypto==2.6 +pycups==1.9.62 +pycurl==7.19.0 +pygobject==3.8.0 +pyinotify==0.9.3 +pyserial==2.6 +pysmbc==1.0.13 +python-apt==0.8.8ubuntu6 +python-dateutil==2.1 +python-debian==0.1.21-nmu2ubuntu1 +pyxdg==0.25 +reportlab==2.6 +rhythmbox-ubuntuone==4.2.0 +sessioninstaller==0.0.0 +six==1.2.0 +software-center-aptd-plugins==0.0.0 +system-service==0.1.6 +ubuntuone-storage-protocol==4.2.0 +unity-lens-photos==0.9 +virtualenv==1.9.1 +wsgiref==0.1.2 +xdiagnose==3.5 +zope.interface==4.0.5 diff --git a/roomies_backend_app/migrations/0001_initial.py b/roomies_backend_app/migrations/0001_initial.py new file mode 100644 index 0000000..e738dc6 --- /dev/null +++ b/roomies_backend_app/migrations/0001_initial.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +import datetime +from south.db import db +from south.v2 import SchemaMigration +from django.db import models + + +class Migration(SchemaMigration): + + def forwards(self, orm): + pass + + def backwards(self, orm): + pass + + models = { + + } + + complete_apps = ['roomies_backend_app'] \ No newline at end of file diff --git a/roomies_backend_app/migrations/__init__.py b/roomies_backend_app/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/roomies_backend_app/models.py b/roomies_backend_app/models.py new file mode 100644 index 0000000..e69de29 diff --git a/roomies_backend_app/settings.py b/roomies_backend_app/settings.py index 9109a1e..f3e4953 100644 --- a/roomies_backend_app/settings.py +++ b/roomies_backend_app/settings.py @@ -163,3 +163,6 @@ # Honor the 'X-Forwarded-Proto' header for request.is_secure() SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https') +INSTALLED_APPS = INSTALLED_APPS + ('roomies_backend_app',) +INSTALLED_APPS = INSTALLED_APPS + ('south',) +INSTALLED_APPS = INSTALLED_APPS + ('tastypie',)