From 5c98e783284f9ea1130246b4f596fbf43400bc4f Mon Sep 17 00:00:00 2001 From: Sruti Modekurty Date: Tue, 12 Feb 2019 14:17:51 -0500 Subject: [PATCH] Move frontend files to separate folder. Update README --- README.md | 19 ++++++++++++++++--- api.js => frontend/api.js | 0 graph.js => frontend/graph.js | 0 index.html => frontend/index.html | 0 styles.css => frontend/styles.css | 0 5 files changed, 16 insertions(+), 3 deletions(-) rename api.js => frontend/api.js (100%) rename graph.js => frontend/graph.js (100%) rename index.html => frontend/index.html (100%) rename styles.css => frontend/styles.css (100%) diff --git a/README.md b/README.md index 4bbb621..b6d0097 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,16 @@ -## 3D Web Visualizer for [RC](recurse.com) Ideas -### Dependencies: -- [3D Force Graph](https://github.com/vasturiano/3d-force-graph) \ No newline at end of file +## Recurse Center Hivemind +A 3D graph visualizer for ideas floating around at the [Recurse Center](recurse.com) + +Graphs ideas based on topic similarities. +- Have a new idea? Add yours in and see other people's similar ideas. Collaborate or come up with something entirely new. +- Have programmers block and have no idea what to work on next? Explore the web and see what ideas you discover. + + +Soon to be deployed... + +#### To run locally +``` +cd frontend +npm install serve +serve . +``` \ No newline at end of file diff --git a/api.js b/frontend/api.js similarity index 100% rename from api.js rename to frontend/api.js diff --git a/graph.js b/frontend/graph.js similarity index 100% rename from graph.js rename to frontend/graph.js diff --git a/index.html b/frontend/index.html similarity index 100% rename from index.html rename to frontend/index.html diff --git a/styles.css b/frontend/styles.css similarity index 100% rename from styles.css rename to frontend/styles.css