summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorrealtradam <[email protected]>2020-12-03 00:17:14 -0500
committerrealtradam <[email protected]>2020-12-03 00:17:14 -0500
commit88454957d06c855fb9a7d06aae59b9012edcdc93 (patch)
treed00f0b4b2493f024136367d69ff642ec6dc399a7
parente6d86fe2b907b6be57bab88396ab8b27fa95d580 (diff)
downloadrails-tree-style-activerecord-master.tar.gz
rails-tree-style-activerecord-master.zip
-rw-r--r--README.md24
1 files changed, 5 insertions, 19 deletions
diff --git a/README.md b/README.md
index 7db80e4..7b658ed 100644
--- a/README.md
+++ b/README.md
@@ -1,24 +1,10 @@
-# README
+# What is this
-This README would normally document whatever steps are necessary to get the
-application up and running.
+I created this to test and debug my idea for a wiki style website. I wanted to be able to have pages, which belong to other pages in a child-parent relationship. Pages are called "nodes" and they have a one-to-many relationship with themselves(aka "nodes"). Each node can optionally belong to one parent. If they do not have a parent then the code assumes they are one of the root nodes. A single node can be a parent to however many other nodes you wish.
-Things you may want to cover:
+This code is very bare bones as I only included what I deemed necessary to test and debug before implementing it to my primary website. While the nodes index page does show all the existing records in the database, displayed in a tree format, they do not have working links. To visit them you have to know or guess the id and enter it in the url. To edit or create new records you also have to type in the url into the adress bar. See this this tutorial to understand how I implemented the these urls: https://guides.rubyonrails.org/getting_started.html
-* Ruby version
+##### Example of the site (note that some of the names are incorrect as I was debugging and it was at the time not in a working state):
-* System dependencies
+![sample](https://i.imgur.com/6bGIeUz.png)
-* Configuration
-
-* Database creation
-
-* Database initialization
-
-* How to run the test suite
-
-* Services (job queues, cache servers, search engines, etc.)
-
-* Deployment instructions
-
-* ...