- 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
- When asked, choose
- 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 themaproulette2
directory- Run the application:
start.bat
- After it compiles (this will take a while) go to
http://localhost:9000
in your browser.