Skip to content

Commit

Permalink
initial
Browse files Browse the repository at this point in the history
  • Loading branch information
omritoptix committed Jun 23, 2013
1 parent 41e0070 commit d7d30ba
Show file tree
Hide file tree
Showing 6 changed files with 123 additions and 0 deletions.
50 changes: 50 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -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
50 changes: 50 additions & 0 deletions requirments.txt
Original file line number Diff line number Diff line change
@@ -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
20 changes: 20 additions & 0 deletions roomies_backend_app/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -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']
Empty file.
Empty file added roomies_backend_app/models.py
Empty file.
3 changes: 3 additions & 0 deletions roomies_backend_app/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',)

0 comments on commit d7d30ba

Please sign in to comment.