From a40613078eb55f0a5f373926688bafab98d81a56 Mon Sep 17 00:00:00 2001
From: Christine Dodrill <me@christine.website>
Date: Fri, 15 Dec 2017 12:59:26 -0800
Subject: [PATCH] README: move doc/README here

---
 README.md     | 23 ++++++++++++++++++++++-
 doc/README.md | 22 ----------------------
 2 files changed, 22 insertions(+), 23 deletions(-)
 mode change 120000 => 100644 README.md
 delete mode 100644 doc/README.md

diff --git a/README.md b/README.md
deleted file mode 120000
index f2f5a20..0000000
--- a/README.md
+++ /dev/null
@@ -1 +0,0 @@
-./doc/README.md
\ No newline at end of file
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..229fee1
--- /dev/null
+++ b/README.md
@@ -0,0 +1,22 @@
+# Route
+
+Route is a load balancer that has backends connect to the load balancer instead
+of the load balancer connecting to backends. This model allows networks to be
+vastly simplified, no longer having to bring in consul or another consensus layer,
+no more configuration generation. 
+
+Project Stability: Alpha
+
+This project is a passion project, as such excuse the atypical setup for everything. 
+If you have ideas on how to improve things, please open an issue, comment on existing
+issues or hit me up in a private message somewhere. I want route to be the easiest
+possible way to host services of all sizes.
+
+Constraints I am putting on myself right now:
+- Use Go as much as possible and where it makes sense use other tools
+- Create solutions using experience from the "old way" of doing things to categorically eliminate problems
+- Make solutions robust and fault-tolerant wherever possible as soon as possible
+- Don't waste resources if you don't have to
+- Always clean things up eventually
+- If you have to fail, fail loudly
+- Don't be too clever
diff --git a/doc/README.md b/doc/README.md
deleted file mode 100644
index 229fee1..0000000
--- a/doc/README.md
+++ /dev/null
@@ -1,22 +0,0 @@
-# Route
-
-Route is a load balancer that has backends connect to the load balancer instead
-of the load balancer connecting to backends. This model allows networks to be
-vastly simplified, no longer having to bring in consul or another consensus layer,
-no more configuration generation. 
-
-Project Stability: Alpha
-
-This project is a passion project, as such excuse the atypical setup for everything. 
-If you have ideas on how to improve things, please open an issue, comment on existing
-issues or hit me up in a private message somewhere. I want route to be the easiest
-possible way to host services of all sizes.
-
-Constraints I am putting on myself right now:
-- Use Go as much as possible and where it makes sense use other tools
-- Create solutions using experience from the "old way" of doing things to categorically eliminate problems
-- Make solutions robust and fault-tolerant wherever possible as soon as possible
-- Don't waste resources if you don't have to
-- Always clean things up eventually
-- If you have to fail, fail loudly
-- Don't be too clever