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

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.

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
```