Try it here: https://developmentseed.org/hackathon-7/
These instructions will help you set up and run the project on your local machine for development and testing purposes.
- Python or Node.js installed on your system
-
Clone or download this repository to your local machine.
-
Navigate to the project directory in your terminal or command prompt.
-
Choose one of the following methods to start a local web server:
If you have Python installed, you can use its built-in HTTP server:
For Python 3.x:
python -m http.server 8000
For Python 2.x:
python -m SimpleHTTPServer 8000
If you prefer Node.js, you can use the http-server
package:
-
First, install
http-server
globally (if you haven't already):npm install -g http-server
-
Then, run the server:
http-server -p 8000
After starting the server using one of the above methods, open your web browser and navigate to:
http://localhost:8000
You should see the application running in your browser.