From f7bc2dbb78b8147cd9a286bd4f6ada989541dc52 Mon Sep 17 00:00:00 2001 From: Damian Legawiec Date: Thu, 12 Aug 2021 17:44:50 +0000 Subject: [PATCH] GitBook: [master] 2 pages modified --- getting-started/installation.md | 12 +++++------- getting-started/understanding_spree.md | 4 ++-- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/getting-started/installation.md b/getting-started/installation.md index f838457..a5c1581 100644 --- a/getting-started/installation.md +++ b/getting-started/installation.md @@ -4,11 +4,11 @@ Before proceeding make sure you have [Docker Desktop](https://docs.docker.com/get-docker/) installed on your system. This is fairly straightforward, but differs depending on which operating system you use. -If you would like to add Spree to your existing Ruby on Rails application, please [follow this guide instead](../advanced/existing_app_tutorial.md). +If you would like to add Spree to your existing Ruby on Rails application, please [follow this guide instead](../advanced/existing_app_tutorial.md) \(for advanced users\). ### Windows -Windows users will need to [install Linux subsystem](https://docs.microsoft.com/en-us/windows/wsl/install-win10) to proceed. +Windows users will need to [install the Linux subsystem](https://docs.microsoft.com/en-us/windows/wsl/install-win10) to proceed. ## Installation @@ -22,15 +22,13 @@ Windows users will need to [install Linux subsystem](https://docs.microsoft.com/ You now have a functional Spree application after running only a few commands! -To see your application in action, open a browser window and navigate to [http://localhost:3000](http://localhost:3000). You should see the Spree default home page: +To see your application in action, open a browser window and navigate to [http://localhost:3000](http://localhost:3000). You should see the Spree default home page. - - -To stop the web server, hit Ctrl-C in the terminal window where it's running. In development mode, Spree does not generally require you to stop the server; changes you make in files will be automatically picked up by the server. +To stop the webserver, hit `Ctrl-C` in the terminal window where it's running. In development mode, Spree does not generally require you to stop the server; changes you make in files will be automatically picked up by the server. ### Logging Into the Admin Panel -The next thing you'll probably want to do is to log into the admin interface. Use your browser window to navigate to [http://localhost:3000/admin](http://localhost:3000/admin). You can login with the username `spree@example.com` and password `spree123`. +The next thing you'll probably want to do is to log into the admin interface. Use your browser window to navigate to [http://localhost:3000/admin](http://localhost:3000/admin). You can log in with the username `spree@example.com` and password `spree123`. Upon successful authentication, you should see the admin screen: diff --git a/getting-started/understanding_spree.md b/getting-started/understanding_spree.md index 956066b..f97cf41 100644 --- a/getting-started/understanding_spree.md +++ b/getting-started/understanding_spree.md @@ -57,7 +57,7 @@ gem 'spree_backend' gem 'spree_frontend' ``` -After changing `Gemfile` please run +After changing the `Gemfile` you need to run ```bash bundle install @@ -71,5 +71,5 @@ bin/bundle-install ## Next steps -We recommend you go over [Internals section](../internals/stores.md) to learn more how Spree works under the hood. This knowledge will be very helpful when you'll decide you want to [customize your Spree store](../customization/dependencies.md). +We recommend you go over [Internals section](../internals/stores.md) to learn more about how Spree works under the hood. This knowledge will be very useful when you'll decide you want to [customize your Spree store](../customization/dependencies.md).