Skip to content
This repository has been archived by the owner on Apr 19, 2024. It is now read-only.

Commit

Permalink
GitBook: [master] 2 pages modified
Browse files Browse the repository at this point in the history
  • Loading branch information
damianlegawiec authored and gitbook-bot committed Aug 12, 2021
1 parent 7dc1099 commit f7bc2db
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
12 changes: 5 additions & 7 deletions getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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 `[email protected]` 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 `[email protected]` and password `spree123`.

Upon successful authentication, you should see the admin screen:

Expand Down
4 changes: 2 additions & 2 deletions getting-started/understanding_spree.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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).

0 comments on commit f7bc2db

Please sign in to comment.