[openstreetmap/openstreetmap-website] Can't proceed after bundler install (#2401)
Jamie Alessio
notifications at github.com
Mon Oct 28 02:03:57 UTC 2019
@icemagno here's my recommended way of using my branch, starting all the way from the beginning:
git clone https://github.com/openstreetmap/openstreetmap-website.git
cd openstreetmap-website
git remote add jalessio https://github.com/jalessio/openstreetmap-website.git
git fetch jalessio
You now have two git "remotes", one called "origin" and one called "jalessio". You can see this for yourself by running this:
git remote -v
which will output something like this _(or more likely **exactly** this)_
jalessio https://github.com/jalessio/openstreetmap-website.git (fetch)
jalessio https://github.com/jalessio/openstreetmap-website.git (push)
origin https://github.com/openstreetmap/openstreetmap-website.git (fetch)
origin https://github.com/openstreetmap/openstreetmap-website.git (push)
You can now switch to my work-in-progress `docker-compose-take2` branch:
git checkout jalessio/docker-compose-take2
>From there, you should read the updated `DOCKER.md` file and follow the instructions there. From the error you posted my guess is that you did not run the database migrations via this command:
docker-compose run --rm web rake db:migrate
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/openstreetmap/openstreetmap-website/issues/2401#issuecomment-546763439
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.openstreetmap.org/pipermail/rails-dev/attachments/20191027/9bfc7a07/attachment.html>
More information about the rails-dev
mailing list