Skip to content

Load onto a device without installing OS

Isaac Reid-Guest edited this page Sep 24, 2013 · 7 revisions

Install and Setup

git clone https://github.com/googlecreativelab/coder cd coder-base npm install

Config

Replace the first group of lines with:

exports.listenIP = '127.0.0.1'; exports.listenPort = '8081'; exports.httpListenPort = '8080'; exports.cacheApps = true; exports.httpVisiblePort = '8080'; exports.httpsVisiblePort = '8081';

On Linux?

If you are on Linux run this command. You must have cd'd into the coder-base directory within your coder installation.

echo "" > sudo_scripts/setpipass

Run

Type into the command line:

node server.js

And wait. The server should be running at https://127.0.0.1:8081.

You may have warnings about security in your browser, ignore these messages- it is down to a fake certificate.

Information via:

This tutorial.

Clone this wiki locally