diff --git a/DEPLOYING b/DEPLOYING
new file mode 100644
index 0000000..24fffd5
--- /dev/null
+++ b/DEPLOYING
@@ -0,0 +1,18 @@
+Here is a quick guide on how to deploy your very own LightWrite server!
+
+First off, you have to get all the needed things. You will need Python 2.7 and django, just google search em
+You will also need sqlite3, so do a quick apt-get || yum install || whatever the hell your package manager is sqlite3
+
+Now, you will need to configure a few things.
+In the directory lightwrite, which you should've gotten from the git pull, there is a file named local_settings.py. Open that.
+
+All you have to do here is change the paths to work with your machine. Here are some templates.
+
+MEDIA_ROOT = '/path/to/top/dir/of/this/project/static'
+SITE_ROOT = '/path/to/top/dir/of/this/project'
+STATICFILES_DIR = ('/path/to/top/dir/of/this/project/static')
+
+And that should be that! Now all you have to do is from the terminal, change directory to /path/to/top/dir/of/this/project/lightwrite/ and then type ./run.sh!
+If you have any problems with this, just try and figure it out. It shouldn't be that hard.
+
+If you see something I missed, please do add on to this file.
diff --git a/lightwrite/.local_settings.py.swp b/lightwrite/.local_settings.py.swp
deleted file mode 100644
index ab1a835..0000000
Binary files a/lightwrite/.local_settings.py.swp and /dev/null differ
diff --git a/lightwrite/.urls.py.swp b/lightwrite/.urls.py.swp
deleted file mode 100644
index f5843e3..0000000
Binary files a/lightwrite/.urls.py.swp and /dev/null differ
diff --git a/lightwrite/__init__.pyc b/lightwrite/__init__.pyc
new file mode 100644
index 0000000..baeea94
Binary files /dev/null and b/lightwrite/__init__.pyc differ
diff --git a/lightwrite/local_settings.py b/lightwrite/local_settings.py
index 06e2d0f..0b78518 100644
--- a/lightwrite/local_settings.py
+++ b/lightwrite/local_settings.py
@@ -1,6 +1,12 @@
-MEDIA_ROOT = '/home/tuttle/Projects/LightWrite/static'
-SITE_ROOT = '/home/tuttle/Projects/LightWrite/'
+#Change these to where you installed light write. Methinks these are sensible defaults
+
+import os
+
+home_path = os.getenv("HOME")
+
+MEDIA_ROOT = '%s/LightWrite/static' % home_path
+SITE_ROOT = '%s/LightWrite/' % home_path
STATICFILES_DIRS = (
- '/home/tuttle/Projects/LightWrite/static/',
+ '%s/LightWrite/static/' % home_path,
)
diff --git a/lightwrite/local_settings.pyc b/lightwrite/local_settings.pyc
new file mode 100644
index 0000000..4c061aa
Binary files /dev/null and b/lightwrite/local_settings.pyc differ
diff --git a/lightwrite/settings.py b/lightwrite/settings.py
index 059c161..9143ead 100644
--- a/lightwrite/settings.py
+++ b/lightwrite/settings.py
@@ -6,7 +6,7 @@
TEMPLATE_DEBUG = DEBUG
ADMINS = (
- # ('Your Name', 'your_email@example.com'),
+ # ('', ''),
)
MANAGERS = ADMINS
@@ -163,3 +163,4 @@
except:
pass
+REDIR = 'w'
diff --git a/lightwrite/settings.pyc b/lightwrite/settings.pyc
new file mode 100644
index 0000000..8036032
Binary files /dev/null and b/lightwrite/settings.pyc differ
diff --git a/lightwrite/templates/.light.html.swp b/lightwrite/templates/.light.html.swp
index a8c824f..3f2592b 100644
Binary files a/lightwrite/templates/.light.html.swp and b/lightwrite/templates/.light.html.swp differ
diff --git a/lightwrite/templates/light.html b/lightwrite/templates/light.html
index 69a39f0..286c712 100644
--- a/lightwrite/templates/light.html
+++ b/lightwrite/templates/light.html
@@ -4,25 +4,56 @@
+
+
+
+
+
+
+
@@ -121,5 +155,6 @@
+