https://github.com/ankurnarkhede/rails-rest-api-boilerplate
Boilerplate for a basic REST API to perform CRUD functions. Uses MySQL by default.
https://github.com/ankurnarkhede/rails-rest-api-boilerplate
json rails rest-api restful-webservices ruby-on-rails
Last synced: about 2 months ago
JSON representation
Boilerplate for a basic REST API to perform CRUD functions. Uses MySQL by default.
- Host: GitHub
- URL: https://github.com/ankurnarkhede/rails-rest-api-boilerplate
- Owner: ankurnarkhede
- License: mit
- Created: 2018-12-28T11:05:28.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-28T11:13:09.000Z (over 7 years ago)
- Last Synced: 2025-05-29T13:59:34.874Z (about 1 year ago)
- Topics: json, rails, rest-api, restful-webservices, ruby-on-rails
- Language: Ruby
- Size: 31.3 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rails-REST-API-boilerplate
Example of a basic REST API to perform CRUD functions. Uses MySQL by default. Please add your own database and credentials
## INSTALL DEPENDENCIES
```bash
$ bundle install
```
## RUN MIGRATION
```bash
$ rake db:migrate
```
## RUN SERVER
```bash
$ rails s
```