The Rails application that powers OpenStreetMap
Find a file
Andy Allan 10a4c5cf6e Rename Feeds::ChangesetCommentsController to ChangesetComments::FeedsController
We usually create nested controllers with the main controller as the module,
and the nested controller as the specialization, e.g. Users::DeletionsController
or Traces::IconsController.

This then leaves the topic of whether the feed resource is plural, and whether we
are then showing a singular feed or showing a list (index) of objects.

The routes are carefully named so that we have `changesets_comments_feed_path` (the
comments feed for all changesets) vs `changeset_comment_feed_path(changeset)` (the
comments for a singular changeset).
2024-08-28 18:31:36 +01:00
.github Add ruby 3.3 to test matrix 2024-08-14 18:56:03 +01:00
app Rename Feeds::ChangesetCommentsController to ChangesetComments::FeedsController 2024-08-28 18:31:36 +01:00
assets Merge branch 'pull/4793' 2024-07-06 14:18:50 +03:00
bin Update to rails 7.1.1 2023-10-18 18:26:13 +01:00
config Rename Feeds::ChangesetCommentsController to ChangesetComments::FeedsController 2024-08-28 18:31:36 +01:00
db Backfill block deactivates_at 2024-08-23 18:25:14 +01:00
docker Use postgres 14 for docker 2023-11-02 08:59:57 +00:00
lib Merge pull request #5060 from tomhughes/rake-expiry 2024-08-28 14:54:31 +01:00
public Add wiki for documentation and regional extracts 2024-07-30 15:21:31 -05:00
script Move token expiry to a rake task 2024-08-08 20:45:10 +01:00
storage Update to rails 5.2.0 2018-06-19 00:16:24 +01:00
test Rename Feeds::ChangesetCommentsController to ChangesetComments::FeedsController 2024-08-28 18:31:36 +01:00
vendor/assets upgrade to iD-2.30.2 (rotated Mapbox API tokens) 2024-08-21 17:35:19 +02:00
.dockerignore Added new parallel test job for docker-compose 2021-01-28 12:03:58 -08:00
.editorconfig Add .editorconfig 2021-09-07 10:46:02 +01:00
.erb-lint.yml Sort cops 2020-04-15 15:55:18 +01:00
.gitattributes Use autodetection for text files 2021-09-12 18:51:51 +01:00
.gitignore Add overcommit to manage git hooks 2024-08-21 08:20:10 +01:00
.mailmap Update mailmap 2018-10-29 12:48:32 +00:00
.overcommit.yml Add overcommit to manage git hooks 2024-08-21 08:20:10 +01:00
.rubocop.yml Disable Rails/BulkChangeTable cop 2024-06-19 17:44:20 +01:00
.rubocop_todo.yml Update rubocop todo 2024-08-27 19:03:43 +01:00
config.ru Update to rails 6.1.3.2 2021-05-12 18:49:21 +01:00
CONFIGURE.md Merge remote-tracking branch 'upstream/pull/4351' 2023-11-16 13:43:46 +00:00
CONTRIBUTING.md Add overcommit to manage git hooks 2024-08-21 08:20:10 +01:00
docker-compose.yml Update docker compose to solve stray PID problem 2023-04-20 10:21:32 -07:00
DOCKER.md Docker: Use docker compose in Docs and Workflow 2023-10-04 19:33:58 +02:00
Dockerfile make docker image use nodejs v18 2024-07-15 16:44:32 +02:00
FAQ.md Replace links to donate.osm.org with supporting.osm.org 2023-08-19 11:22:54 +01:00
Gemfile Add overcommit to manage git hooks 2024-08-21 08:20:10 +01:00
Gemfile.lock Update bundle 2024-08-27 17:47:47 +01:00
INSTALL.md Update bundler link 2024-05-14 18:36:27 +03:00
LICENSE Add GPLv2 license file and mention in README 2012-02-23 18:55:39 +00:00
package.json Add overcommit to manage git hooks 2024-08-21 08:20:10 +01:00
Rakefile Update to rails 5.0.4 2017-06-27 08:26:44 +01:00
README.md Add Anton as a maintainer 2024-06-19 15:02:51 +01:00
SECURITY.md Add a basic security policy. 2022-08-03 17:06:18 +01:00
VAGRANT.md Switch to using 'rails test:all' in documentation and CI 2021-05-19 13:39:37 +01:00
Vagrantfile Update vagrant provisioning for 22.04 2023-05-31 15:36:13 +01:00
Vendorfile Drop compromised polyfill.io from upstream vendors 2024-06-26 08:36:14 +01:00
yarn.lock Bump eslint from 9.9.0 to 9.9.1 2024-08-23 23:46:41 +00:00

openstreetmap-website

Lint Tests Coverage Status

This is openstreetmap-website, the Ruby on Rails application that powers the OpenStreetMap website and API.

This repository consists of:

  • The web site, including user accounts, diary entries, user-to-user messaging.
  • The XML- and JSON-based editing API.
  • The integrated version of the iD editor.
  • The Browse pages - a web front-end to the OpenStreetMap data.
  • The GPX uploads, browsing and API.

A fully-functional openstreetmap-website installation depends on other services, including map tile servers and geocoding services, that are provided by other software. The default installation uses publicly-available services to help with development and testing.

License

This software is licensed under the GNU General Public License 2.0, a copy of which can be found in the LICENSE file.

Installation

openstreetmap-website is a Ruby on Rails application that uses PostgreSQL as its database, and has a large number of dependencies for installation. For full details please see INSTALL.md.

Development

We're always keen to have more developers! Pull requests are very welcome.

More details on contributing to the code are in the CONTRIBUTING.md file.

Maintainers