Skip to content
forked from mozilla/buddyup

The UI repo for the buddy-up realtime support FirefoxOS app

License

Notifications You must be signed in to change notification settings

Amadou02/buddyup

 
 

Repository files navigation

buddyup-ui

Real-time Firefox OS Support

Development Workflow

First, let's install the required dependencies. From the command line, run:

$ npm install

Once the above completes, run:

$ node_modules/.bin/grunt dev

This will precompile the nunjucks templates, start up the server, and start watching for changes to either app.js or any of the templates in app/views/. If any of the templates changes, it will auto-reload them.

To reduce the amount of typing you have to do, you may consider putting the node_modules/.bin directory on your PATH. Then you can simply use grunt dev instead of specifying the full path.

To access the app via a browser, open http://127.0.0.1:8000/app/index.html. To test on an real device, use the WebIDE built into Firefox.

You still need to run grunt prior to launching the WebIDE.

Localization

Localizations are not included by default, but are pulled from Verbatim via Sumo. To download the translations, run

$ node_modules/.bin/grunt get_localization

If all goes well, you should have one js file in app/translations/ for each supported locale. For example, the French localizations would be stored in app/translations/fr.js.

Tests

Unit

To run unit tests, we use the Gaia infrastructure.

You need to fetch Gaia and run the test server:

$ ./scripts/fetch-gaia.sh
$ ./scripts/run-unit-test-server.sh

And in another shell:

$ ./scripts/run-unit-tests.sh

Integration

You need to follow the same procedure as for unit tests.

$ ./scripts/fetch-gaia.sh
$ ./scripts/run-integration-tests-server.sh

And in another shell,

$ ./scripts/run-integration-tests.sh

About

The UI repo for the buddy-up realtime support FirefoxOS app

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 63.2%
  • CSS 22.9%
  • HTML 13.4%
  • Shell 0.5%