Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/willzeng/WikiNets
[deprecated] see cograph
https://github.com/willzeng/WikiNets
Last synced: 3 months ago
JSON representation
[deprecated] see cograph
- Host: GitHub
- URL: https://github.com/willzeng/WikiNets
- Owner: willzeng
- License: gpl-3.0
- Created: 2013-08-12T15:10:54.000Z (over 11 years ago)
- Default Branch: dev
- Last Pushed: 2015-02-08T11:05:57.000Z (almost 10 years ago)
- Last Synced: 2024-08-01T12:35:38.655Z (6 months ago)
- Language: JavaScript
- Homepage: https://github.com/willzeng/cograph
- Size: 7.49 MB
- Stars: 30
- Watchers: 15
- Forks: 11
- Open Issues: 50
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-starred - willzeng/WikiNets - [deprecated] see cograph (others)
README
WikiNets
========If you like this project, then you might also be interested in checking out: [cograph](https://github.com/willzeng/cograph)
This is the code for a prototype of WikiNets. Feel free to contribute. It's available under a GNU GPL v3 license, the text of which is bundled, but in short: you're free to take this code and modify it as you wish, on the condition that you declare any changes you make, and pass on this freedom and responsibility in any release of your altered code. Note that these are all (still buggy) prototypes:
**Links**
+ [Stable Version](http://rhizi-rhizi.herokuapp.com)
+ [Edge](http://rhizi-demo.herokuapp.com)##Setup
WikiNets can be set to work with a local WikiNet on your machine or with a WikiNet in the cloud.
###Cloud DB Option
By default it is set-up to work with one free sandbox WikiNet that everyone shares.
To run:
```
git clone https://github.com/willzeng/Rhizi
cd wikinets
npm install
sh server.sh
```
Then go to `localhost:3000` in your browser.###Local DB Option
To Run on a local WikiNet, you will need to install a copy of Neo4j (version 2.0.0-RC1 or higher):
Install neo4j [here](http://www.neo4j.org/download).
For Debian / Ubuntu, just follow these commands:# start root shell
sudo -s
# Import our signing key
wget -O - http://debian.neo4j.org/neotechnology.gpg.key | apt-key add -
# Create an Apt sources.list file
echo 'deb http://debian.neo4j.org/repo stable/' > /etc/apt/sources.list.d/neo4j.list
# Find out about the files in our repository
apt-get update
# Install Neo4j, community edition
apt-get install neo4j
# start neo4j server, available at http://localhost:7474 of the target machine
neo4j startChange one line in web.js:
var url = 'http://localhost:7474';
Then run the following in your terminal:
sh server.sh
Then go to `localhost:3000` in your browser.
For sublime 3 text highlighting for coffee:
https://github.com/aponxi/sublime-better-coffeescript