Skip to content

Instantly share code, notes, and snippets.

@mvexel
Last active October 11, 2016 20:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mvexel/3710d7f15534ec747423a3117cd7cc9c to your computer and use it in GitHub Desktop.
Save mvexel/3710d7f15534ec747423a3117cd7cc9c to your computer and use it in GitHub Desktop.
maproulette-2-windows-local-setup.md
  • Install Java JDK 8 from here
    • Set JAVA_HOME environment variable according to install instructions
  • Download and extract the Lightbend Activator from here
  • Add the Activator bin directory to your Windows path.
  • Install PostgreSQL 9.5 from here
    • When asked, choose osm as the database superuser password
  • Run the PostgreSQL StackBuilder to install PostGIS 2.3.0
  • Install git for windows from here
  • Open a PSQL console from the PostgreSQL program menu
  • In the PSQL consile, create the MapRoulette database:
CREATE DATABASE mp_dev;
\c mp_dev
CREATE EXTENSION POSTGIS;
  • Git Clone MapRoulette 2 from https://github.com/mvexel/maproulette2
  • Enter the maproulette2 directory
  • Open a command prompt
  • cd into the maproulette2 directory
  • Run the application: start.bat
  • After it compiles (this will take a while) go to http://localhost:9000 in your browser.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment