Skip to content
juhis edited this page Nov 26, 2015 · 1 revision
  1. Make sure you have Node.js and Redis installed. On OS X, the most convenient way to install them is using Homebrew.
  2. Download/clone/fork the Gene Network repository.
  3. Go to the root directory of the repository and run
    npm install
    
    to install the required npm packages (as listed in package.json).
  4. Build the client-side React application:
    npm run build
    
    or
    npm run build:watch
    
    to rebuild every time there is a change in the source code.
  5. Run the Redis server:
    /path-to-if-needed/redis-server
    
  6. Start the Sails application:
    npm start
    
  7. Go to http://localhost:1337 and if all is well, you will see the landing page of the website.
Clone this wiki locally