Skip to content

Commit

Permalink
update repository names (#1000)
Browse files Browse the repository at this point in the history
  • Loading branch information
jschwarz2030 authored Jan 4, 2023
1 parent 929b314 commit d31b088
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING
Original file line number Diff line number Diff line change
@@ -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!
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -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.

Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion app/org/maproulette/controllers/api/TaskController.scala
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down
4 changes: 2 additions & 2 deletions docs/deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -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<br/>
Frontend - https://github.com/osmlab/maproulette3.git<br/>
Backend - https://github.com/maproulette/maproulette-backend.git<br/>
Frontend - https://github.com/maproulette/maproulette3.git<br/>
docker - https://github.com/maproulette/maproulette2-docker.git

### Step by Step
Expand Down

0 comments on commit d31b088

Please sign in to comment.