Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ratracegrad/rails-sample-app
https://github.com/ratracegrad/rails-sample-app
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ratracegrad/rails-sample-app
- Owner: ratracegrad
- Created: 2020-02-09T13:36:15.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-19T17:14:46.000Z (almost 2 years ago)
- Last Synced: 2023-02-27T12:06:32.677Z (almost 2 years ago)
- Language: Ruby
- Size: 1.28 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 34
-
Metadata Files:
- Readme: README.md
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
```