Skip to content

Latest commit

 

History

History
44 lines (32 loc) · 1.6 KB

File metadata and controls

44 lines (32 loc) · 1.6 KB

OAM Browser

Build Status

The OAM-Browser is a part of the OpenAerialMap project. See the OpenAerialMap repository for more information about the project and contribute to the development.

Submit any issues and feedback regarding the imagery browser in the issue tracker.

Access the site at http://hotosm.github.io/oam-browser/.

Development environment

To set up the development environment for this website, you'll need to install the following on your system:

After these basic requirements are met, run the following commands in the website's folder:

$ npm install

Will also run bundle install

Getting started

Source code goes in app and after building it will be copied to dist.

$ gulp

Compiles the compass files, javascripts, and launches the server making the site available at http://localhost:3000/ The system will watch files and execute tasks whenever one of them changes. The site will automatically refresh since it is bundled with livereload.

Other commands

Compile the compass files, javascripts. Use this instead of gulp if you don't want to watch.

$ gulp build

The same as gulp but without livereloading the website.

$ gulp no-reload