Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ratracegrad/rails-sample-app


https://github.com/ratracegrad/rails-sample-app

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# Ruby on Rails Tutorial sample application

## Getting started

To get started with the app, clone the repo and then install the needed gems:

```
$ bundle install --without production
```

Next, migrate the database:

```
$ rails db:migrate
```

Finally, run the test suite to verify that everything is working correctly:

```
$ rails test
```

If the test suite passes, you'll be ready to run the app in a local server:

```
$ rails server
```