From 8097ca3b8f81b4d3d7504a696204ac8b55255888 Mon Sep 17 00:00:00 2001 From: Brian Ketelsen Date: Sat, 18 Jan 2020 16:44:16 -0500 Subject: [PATCH] Fixes example steps (#33) --- docs/guide.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/guide.md b/docs/guide.md index fa9852b..085ea8b 100644 --- a/docs/guide.md +++ b/docs/guide.md @@ -31,14 +31,14 @@ Super Graph has a rich feature set like integrating with your existing Ruby on R ## Try the demo app ```bash -# download the Docker compose config for the demo -curl -L -o demo.yml https://bit.ly/2mq05lW +# clone the repository +git clone https://github.com/dosco/super-graph # setup the demo rails app & database and run it -docker-compose -f demo.yml run rails_app rake db:create db:migrate db:seed +docker-compose run rails_app rake db:create db:migrate db:seed # run the demo -docker-compose -f demo.yml up +docker-compose up # signin to the demo app (user1@demo.com / 123456) open http://localhost:3000