diff --git a/CONTRIBUTING b/CONTRIBUTING index cce7b344..39067bd0 100644 --- a/CONTRIBUTING +++ b/CONTRIBUTING @@ -1,5 +1,5 @@ Thanks for taking the time to contribute to MapRoulette! -Please note that this repository cover the MapRoulette API and back-end. If you are creating a new issue, please make sure that your suggestion or bug report is specific to the API. If it isn't, please [open an issue in the main MapRoulette repository](https://github.com/osmlab/maproulette3/issues/new) instead. +Please note that this repository cover the MapRoulette API and back-end. If you are creating a new issue, please make sure that your suggestion or bug report is specific to the API. If it isn't, please [open an issue in the main MapRoulette repository](https://github.com/maproulette/maproulette3/issues/new) instead. Thanks! \ No newline at end of file diff --git a/README.md b/README.md index 343079c2..d74be2e6 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,9 @@ # MapRoulette API [![Build Status](https://travis-ci.org/maproulette/maproulette2.svg?branch=dev)](https://travis-ci.org/maproulette/maproulette2) [![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=maproulette_maproulette2&metric=alert_status)](https://sonarcloud.io/dashboard?id=maproulette_maproulette2) -![GitHub release (latest by date)](https://img.shields.io/github/v/release/maproulette/maproulette2) +![GitHub release (latest by date)](https://img.shields.io/github/v/release/maproulette/maproulette-backend) -Welcome to the repository for the MapRoulette back-end server code. The MapRoulette back-end exposes the MapRoulette API, which the MapRoulette front-end web application depends on. The source code for the web application is in [a separate repository](https://github.com/osmlab/maproulette3). +Welcome to the repository for the MapRoulette back-end server code. The MapRoulette back-end exposes the MapRoulette API, which the MapRoulette front-end web application depends on. The source code for the web application is in [a separate repository](https://github.com/maproulette/maproulette3). **If you just want to deploy the MapRoulette back-end, [we have a 🚢 Docker image 🚢 for that](https://github.com/maproulette/maproulette2-docker)**. This is especially useful if you want to contribute to the MapRoulette front-end and don't intend to touch the back-end. @@ -93,7 +93,7 @@ docker run \ #### MapRoulette Database Configuration -Clone the maproulette2 repository and `cd` to that directory, and create `conf/dev.conf` using the example file: +Clone the maproulette-backend repository and `cd` to that directory, and create `conf/dev.conf` using the example file: ```sh cp conf/dev.conf.example conf/dev.conf @@ -314,7 +314,7 @@ notifications.digestEmail.interval = "24 hours" # once daily ## Creating new Challenges -[The wiki for this repo](https://github.com/maproulette/maproulette2/wiki) has some information on creating challenges. +[The wiki for this repo](https://github.com/maproulette/maproulette-backend/wiki) has some information on creating challenges. [Challenge API](docs/challenge_api.md) has further information about creating challenges through the API. diff --git a/app/org/maproulette/controllers/api/TaskController.scala b/app/org/maproulette/controllers/api/TaskController.scala index 18e3db8e..20049dcb 100644 --- a/app/org/maproulette/controllers/api/TaskController.scala +++ b/app/org/maproulette/controllers/api/TaskController.scala @@ -189,7 +189,7 @@ class TaskController @Inject() ( //priority based on location and parent priority rules. updatePriority(createdObject); - //https://github.com/osmlab/maproulette3/issues/1733 + //https://github.com/maproulette/maproulette3/issues/1733 //User request to have taskUploads update taskRefresh for challenge this.dalManager.challenge.markTasksRefreshed()(createdObject.parent); diff --git a/docs/deployment.md b/docs/deployment.md index c05c1dcf..0bf414b8 100644 --- a/docs/deployment.md +++ b/docs/deployment.md @@ -2,8 +2,8 @@ This document is to help understanding how MapRoulette is deployed to production servers. There are various ways to do this but this focuses on how MapRoulette is deployed to maproulette.org. This uses maproulette2-docker to deploy both the backend and frontend. Below you can find the github repo's that are used for the deployment. -Backend - https://github.com/maproulette/maproulette2.git
-Frontend - https://github.com/osmlab/maproulette3.git
+Backend - https://github.com/maproulette/maproulette-backend.git
+Frontend - https://github.com/maproulette/maproulette3.git
docker - https://github.com/maproulette/maproulette2-docker.git ### Step by Step