Skip to content

Commit

Permalink
Update URLs + add OSM US info (#661)
Browse files Browse the repository at this point in the history
  • Loading branch information
willemarcel authored Feb 9, 2024
1 parent bb038f1 commit a457b8b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
13 changes: 6 additions & 7 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
osmcha-django
==============

.. image:: https://travis-ci.org/willemarcel/osmcha-django.svg
:target: https://travis-ci.org/willemarcel/osmcha-django

.. image:: https://coveralls.io/repos/github/willemarcel/osmcha-django/badge.svg?branch=master
.. image:: https://coveralls.io/repos/github/osmcha/osmcha-django/badge.svg?branch=master
:target: https://coveralls.io/github/willemarcel/osmcha-django?branch=master

.. image:: https://img.shields.io/badge/Contributor%20Covenant-v2.0%20adopted-ff69b4.svg
Expand All @@ -19,10 +16,12 @@ OpenStreetMap API, analyses and store it in a database and finally provides a
REST API to interact with the changeset data.

This repository contains the backend code. You can report errors or request new features in the
`osmcha-frontend repository <https://github.com/mapbox/osmcha-frontend>`_.
`osmcha-frontend repository <https://github.com/osmcha/osmcha-frontend>`_.

License: BSD 2-Clause

OSMCha is an `OpenStreetMap US <https://www.openstreetmap.us/>` charter project. You can support this project by `making a donation <https://openstreetmap.app.neoncrm.com/forms/osmcha>`.

Settings
------------

Expand Down Expand Up @@ -141,7 +140,7 @@ How to login using the OAuth api
Frontend
^^^^^^^^

`osmcha-frontend <https://github.com/mapbox/osmcha-frontend>`_ is a web interface
`osmcha-frontend <https://github.com/osmcha/osmcha-frontend>`_ is a web interface
that you can use to interact with the API. We have a django management command
to get the last version of osmcha-frontend and serve it with the API.

Expand Down Expand Up @@ -178,4 +177,4 @@ Get in contact
If you use, deploy or are interested in help to develop OSMCha, subscribe to our
`mailing list <https://lists.openstreetmap.org/listinfo/osmcha-dev>`_. You can
report errors or request new features in the
`osmcha-frontend repository <https://github.com/mapbox/osmcha-frontend>`_.
`osmcha-frontend repository <https://github.com/osmcha/osmcha-frontend>`_.
6 changes: 3 additions & 3 deletions osmchadjango/frontend/management/commands/update_frontend.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ def handle(self, *args, **options):
settings.APPS_DIR.root, 'frontend', 'templates', 'frontend'
)
repo = git.Repo.clone_from(
'https://github.com/mapbox/osmcha-frontend.git',
"https://github.com/osmcha/osmcha-frontend.git",
temp_dir,
branch=settings.OSMCHA_FRONTEND_VERSION,
depth=1
)
depth=1,
)
print('Cloned osmcha-frontend ({}) to {}'.format(repo.commit().hexsha, temp_dir))

main_files = [
Expand Down

0 comments on commit a457b8b

Please sign in to comment.