https://github.com/ratracegrad/rails-sample-app
https://github.com/ratracegrad/rails-sample-app
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ratracegrad/rails-sample-app
- Owner: ratracegrad
- Created: 2020-02-09T13:36:15.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-19T17:14:46.000Z (over 2 years ago)
- Last Synced: 2025-01-06T08:19:57.703Z (4 months ago)
- Language: Ruby
- Size: 1.28 MB
- Stars: 1
- Watchers: 3
- 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
```