Перейти к файлу
Simon Wex ea9b863499 Working basic message sending. 2012-09-06 08:34:50 -07:00
app/http Working basic message sending. 2012-09-06 08:34:50 -07:00
config Adding basic layout from boilerplate.js 2012-08-28 18:32:48 -07:00
lib Removing useless config settings. 2012-08-29 19:11:14 -07:00
.gitignore Silly .DS_Store 2012-08-28 18:45:00 -07:00
LICENSE.html Adding MPL 2012-08-22 12:07:35 -07:00
README.md Updating README 2012-08-31 13:11:05 -07:00
app.js Adding basic layout from boilerplate.js 2012-08-28 18:32:48 -07:00
fileupload.css Added a simple page to select files for sharing 2012-08-28 17:13:42 -05:00
fileupload.html Added a simple page to select files for sharing 2012-08-28 17:13:42 -05:00
fileupload.js Don't save files that were loaded from the database. Make the version checking code db-neutral 2012-08-28 17:26:30 -05:00
package.json culling dependencies 2012-08-29 19:09:35 -07:00

README.md

Smoke Jumper:

A smokejumper is a wildland firefighter who parachutes into a remote area to combat wildfires.

The Smoke Jumper project is an effort to bring dead simple, secure, P2P file sharing to Firefox.

Prerequisites:

The latest and greatest from the Alder branch of Firefox:

Follow these steps, but use the Alder branch instead of mozilla-central.

https://developer.mozilla.org/en-US/docs/Simple_Firefox_build

http://hg.mozilla.org/projects/alder/

Server Installation:

In the root of the project, run the following:

$> npm install
$> NODE_ENV=development ./app.js

This defaults to http://localhost:3000/. A few things are hard-coded at the moment, so it's best to run it on that port.

Open a browser to http://localhost:3000/ you'll be redirected to a unique URL. Open that url in another tab.

Tips & Tricks:

This is mostly a placeholder for running the basic demo, for now:

Running two Firefox profiles simultaneously:

First, we create two profiles that we're going to use to test with. For this we use the profile manager:

~/projects/alder/obj-x86_64-apple-darwin11.4.0/dist/NightlyDebug.app/Contents/MacOS/firefox -profilemanager

Then we run an instance of our Alder build for each profile we just created. I named them "Andy" and "Beth".

~/projects/alder/obj-x86_64-apple-darwin11.4.0/dist/NightlyDebug.app/Contents/MacOS/firefox -p Andy -no-remote ~/projects/alder/obj-x86_64-apple-darwin11.4.0/dist/NightlyDebug.app/Contents/MacOS/firefox -p Beth -no-remote