Giter Site home page Giter Site logo

nuttyapp's Introduction

https://nutty.io

LICENSE

nutty is licensed under GPLv3

Docker image

Details here: https://registry.hub.docker.com/u/krishnasrinivas/nuttyapp/ (docker specific code on docker branch)

Nutty server install

  1. Install MongoDB
  2. $ curl https://install.meteor.com/ | sh
  3. $ sudo npm install -g meteorite
  4. $ git clone https://github.com/krishnasrinivas/nuttyapp.git
  5. $ cd nuttyapp
  6. $ mrt install
  7. Configure authinfo.json (optional, details given below)
  8. $ meteor bundle ../bundle.tgz
  9. $ cd ..
  10. $ tar xzvf bundle.tgz
  11. $ export MONGO_URL=mongodb://localhost/nuttyapp
  12. $ export PORT=80
  13. $ export ROOT_URL='http://yourserver.com'
  14. $ sudo node bundle/main.js

authinfo.json should be put in "nuttyapp/private" directory with the format:

    {
        "google": {
            "clientId": "googleoauth-clientid-optional",
            "secret": "googleoauth-secret-optional"
        },
        "aws": {
            "awsid": "s3upload-awsid-optional",
            "awssecret": "s3upload-awssecret-optional"
        },
        "webrtc": {
            "key": "key from peerjs.com - optional - if you need webrtc"
        }
    }

google.clientId and google.secret can be configured if you need google auth signin. aws.awsid and aws.awssecret can be configured if you plan to record terminal and upload them to S3. webrtc should be configured if you need WebRTC. For webrtc config details check http://peerjs.com/. nutty.io's webrtc config looks like this:

    "webrtc": {
        "host": "webrtc-nuttyapp.rhcloud.com",
        "port": 8443,
        "iceServers": [{
            "url": "stun:stun.l.google.com:19302"
        }]
    }

nuttyapp's People

Contributors

krishnasrinivas avatar

Watchers

James Cloos avatar Keith Myers avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.