From: Jamie Alessio Date: Sat, 26 Oct 2019 19:13:09 +0000 (-0700) Subject: Don't try to introduce top-level Makefile at this time X-Git-Tag: live~1678^2~26 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/b5bf4e375bc86f50dde94cca6f07ac3e79bb4e5e Don't try to introduce top-level Makefile at this time --- diff --git a/Makefile b/Makefile deleted file mode 100644 index d2939d4e4..000000000 --- a/Makefile +++ /dev/null @@ -1,22 +0,0 @@ -docker-build: - docker-compose build - -docker-up: - docker-compose up -d - -docker-db-migrate: - docker-compose run --rm web rake db:migrate - -docker-test: - docker-compose run --rm web rake test:db - -docker-populate-db: - wget https://download.geofabrik.de/north-america/us/district-of-columbia-latest.osm.pbf - docker-compose run --rm web osmosis \ - -verbose \ - --read-pbf district-of-columbia-latest.osm.pbf \ - --write-apidb \ - host="db" \ - database="openstreetmap" \ - user="openstreetmap" \ - validateSchemaVersion="no"