diff --git a/LigandWorld/LigandWorld/__init__.py b/LigandWorld/LigandWorld/__init__.py
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/LigandWorld/LigandWorld/settings.py b/LigandWorld/LigandWorld/settings.py
new file mode 100755
index 0000000000000000000000000000000000000000..ffda3befa723ac1451b91daba216927ed598d1d5
--- /dev/null
+++ b/LigandWorld/LigandWorld/settings.py
@@ -0,0 +1,112 @@
+"""
+Django settings for LigandWorld project.
+
+Generated by 'django-admin startproject' using Django 1.8.2.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/1.8/topics/settings/
+
+For the full list of settings and their values, see
+https://docs.djangoproject.com/en/1.8/ref/settings/
+"""
+
+# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
+import os
+
+BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
+
+
+# Quick-start development settings - unsuitable for production
+# See https://docs.djangoproject.com/en/1.8/howto/deployment/checklist/
+
+# SECURITY WARNING: keep the secret key used in production secret!
+SECRET_KEY = '#v!-r@6de=w&6*pzb&em(*jvk(c90x=mqlr=(6_6qf3z#^+t#e'
+
+# SECURITY WARNING: don't run with debug turned on in production!
+DEBUG = True
+
+ALLOWED_HOSTS = []
+
+
+# Application definition
+
+INSTALLED_APPS = (
+    'django.contrib.admin',
+    'django.contrib.auth',
+    'django.contrib.contenttypes',
+    'django.contrib.sessions',
+    'django.contrib.messages',
+    'django.contrib.staticfiles',
+    'annotator'
+)
+
+MIDDLEWARE_CLASSES = (
+    'django.contrib.sessions.middleware.SessionMiddleware',
+    'django.middleware.common.CommonMiddleware',
+    'django.middleware.csrf.CsrfViewMiddleware',
+    'django.contrib.auth.middleware.AuthenticationMiddleware',
+    'django.contrib.auth.middleware.SessionAuthenticationMiddleware',
+    'django.contrib.messages.middleware.MessageMiddleware',
+    'django.middleware.clickjacking.XFrameOptionsMiddleware',
+    'django.middleware.security.SecurityMiddleware',
+)
+
+ROOT_URLCONF = 'LigandWorld.urls'
+
+TEMPLATES = [
+    {
+        'BACKEND': 'django.template.backends.django.DjangoTemplates',
+        'DIRS': [],
+        'APP_DIRS': True,
+        'OPTIONS': {
+            'context_processors': [
+                'django.template.context_processors.debug',
+                'django.template.context_processors.request',
+                'django.contrib.auth.context_processors.auth',
+                'django.contrib.messages.context_processors.messages',
+            ],
+        },
+    },
+]
+
+WSGI_APPLICATION = 'LigandWorld.wsgi.application'
+
+
+# Database
+# https://docs.djangoproject.com/en/1.8/ref/settings/#databases
+
+DATABASES = {
+    'default': {
+        'ENGINE': 'django.db.backends.sqlite3',
+        'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
+    }
+}
+
+
+# Internationalization
+# https://docs.djangoproject.com/en/1.8/topics/i18n/
+
+LANGUAGE_CODE = 'en-us'
+
+TIME_ZONE = 'UTC'
+
+USE_I18N = True
+
+USE_L10N = True
+
+USE_TZ = True
+
+
+# Static files (CSS, JavaScript, Images)
+# https://docs.djangoproject.com/en/1.8/howto/static-files/
+
+STATIC_URL = '/static/'
+
+STATICFILES_DIRS = (
+    os.path.join(BASE_DIR, "static"),
+)
+
+try:
+    from local_settings import *
+except ImportError:
+    pass
\ No newline at end of file
diff --git a/LigandWorld/LigandWorld/urls.py b/LigandWorld/LigandWorld/urls.py
new file mode 100755
index 0000000000000000000000000000000000000000..ab8e0e2528599e35a6b2479bf426e84de916b553
--- /dev/null
+++ b/LigandWorld/LigandWorld/urls.py
@@ -0,0 +1,21 @@
+"""LigandWorld URL Configuration
+
+The `urlpatterns` list routes URLs to views. For more information please see:
+    https://docs.djangoproject.com/en/1.8/topics/http/urls/
+Examples:
+Function views
+    1. Add an import:  from my_app import views
+    2. Add a URL to urlpatterns:  url(r'^$', views.home, name='home')
+Class-based views
+    1. Add an import:  from other_app.views import Home
+    2. Add a URL to urlpatterns:  url(r'^$', Home.as_view(), name='home')
+Including another URLconf
+    1. Add an import:  from blog import urls as blog_urls
+    2. Add a URL to urlpatterns:  url(r'^blog/', include(blog_urls))
+"""
+from django.conf.urls import include, url
+from django.contrib import admin
+
+urlpatterns = [
+    url(r'^admin/', include(admin.site.urls)),
+]
diff --git a/LigandWorld/LigandWorld/wsgi.py b/LigandWorld/LigandWorld/wsgi.py
new file mode 100755
index 0000000000000000000000000000000000000000..bd90ab41b27e80d5a0aa5f4ea7586c7f7b693a1f
--- /dev/null
+++ b/LigandWorld/LigandWorld/wsgi.py
@@ -0,0 +1,16 @@
+"""
+WSGI config for LigandWorld project.
+
+It exposes the WSGI callable as a module-level variable named ``application``.
+
+For more information on this file, see
+https://docs.djangoproject.com/en/1.8/howto/deployment/wsgi/
+"""
+
+import os
+
+from django.core.wsgi import get_wsgi_application
+
+os.environ.setdefault("DJANGO_SETTINGS_MODULE", "LigandWorld.settings")
+
+application = get_wsgi_application()
diff --git a/LigandWorld/annotator/__init__.py b/LigandWorld/annotator/__init__.py
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/LigandWorld/annotator/admin.py b/LigandWorld/annotator/admin.py
new file mode 100755
index 0000000000000000000000000000000000000000..8c38f3f3dad51e4585f3984282c2a4bec5349c1e
--- /dev/null
+++ b/LigandWorld/annotator/admin.py
@@ -0,0 +1,3 @@
+from django.contrib import admin
+
+# Register your models here.
diff --git a/LigandWorld/annotator/migrations/__init__.py b/LigandWorld/annotator/migrations/__init__.py
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/LigandWorld/annotator/models.py b/LigandWorld/annotator/models.py
new file mode 100755
index 0000000000000000000000000000000000000000..804b04b282d636d2117aa5ef5bce21e52fd921bb
--- /dev/null
+++ b/LigandWorld/annotator/models.py
@@ -0,0 +1,33 @@
+from django.db import models
+
+# Create your models here.
+
+class Biounit(models.Model):
+	class Meta:					# Optional but
+		db_table = 'biounits'	# Recommended, name your DB table
+
+	smtl_id = models.CharField(max_length=10)
+	title = models.TextField()
+	resolution = models.FloatField()
+
+class Ligand(models.Model):
+	class Meta:					# Optional but
+		db_table = 'ligands'	# Recommended, name your DB table
+
+	biounit = models.ForeignKey(Biounit)
+	shortname = models.CharField(max_length=3)
+	longname = models.TextField()
+	annotation = models.CharField(max_length=128,
+					 			  choices=(
+									('unknown','Unknown'),
+									('irrelevant','Non-functional Binders'),
+									('buffer','Buffer'),
+									('solvent','Solvent'),
+									('impurity','Precipitate/Ion/Organic Non-Binder'),
+									('covalent','Covalent'),
+									('ptm','Post Translational Modification'),
+									('chemically_modified','Chemical modification'),
+									('non-covalent','Non-covalent'),
+									('natural','Natural, non covalently bound'),
+									('synthetic','Synthetic, non covalently bound'))
+                   				 )
diff --git a/LigandWorld/annotator/tests.py b/LigandWorld/annotator/tests.py
new file mode 100755
index 0000000000000000000000000000000000000000..7ce503c2dd97ba78597f6ff6e4393132753573f6
--- /dev/null
+++ b/LigandWorld/annotator/tests.py
@@ -0,0 +1,3 @@
+from django.test import TestCase
+
+# Create your tests here.
diff --git a/LigandWorld/annotator/views.py b/LigandWorld/annotator/views.py
new file mode 100755
index 0000000000000000000000000000000000000000..91ea44a218fbd2f408430959283f0419c921093e
--- /dev/null
+++ b/LigandWorld/annotator/views.py
@@ -0,0 +1,3 @@
+from django.shortcuts import render
+
+# Create your views here.
diff --git a/LigandWorld/db.sqlite3 b/LigandWorld/db.sqlite3
new file mode 100755
index 0000000000000000000000000000000000000000..da0ecc634e05edf60fb587e2adb2b694db0e43b2
Binary files /dev/null and b/LigandWorld/db.sqlite3 differ
diff --git a/LigandWorld/manage.py b/LigandWorld/manage.py
new file mode 100755
index 0000000000000000000000000000000000000000..1fc4bcf546fc2980739a529fd989af19569d875b
--- /dev/null
+++ b/LigandWorld/manage.py
@@ -0,0 +1,10 @@
+#!/usr/bin/env python
+import os
+import sys
+
+if __name__ == "__main__":
+    os.environ.setdefault("DJANGO_SETTINGS_MODULE", "LigandWorld.settings")
+
+    from django.core.management import execute_from_command_line
+
+    execute_from_command_line(sys.argv)
diff --git a/pip_freeze.txt b/pip_freeze.txt
new file mode 100755
index 0000000000000000000000000000000000000000..0498df7195c5db467e60a58f65c97eacd34d3902
--- /dev/null
+++ b/pip_freeze.txt
@@ -0,0 +1 @@
+Django==1.8.2