Skip to content

A Heroku Buildpack that generates a REST webservice from a Core Data model

License

Notifications You must be signed in to change notification settings

edwardmarks/heroku-buildpack-core-data

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 

Repository files navigation

Core Data Buildpack

This is still in early stages of development, so proceed with caution when using this in a production application. Any bug reports, feature requests, or general feedback at this point would be greatly appreciated.

This is a Heroku buildpack for generating a REST web service from a Core Data model. It uses rack-core-data.

Usage

$ ls
Example.xcdatamodel

$ heroku create --stack cedar --buildpack http://github.com/mattt/heroku-buildpack-core-data.git

$ git push heroku master
...
-----> Heroku receiving push
-----> Fetching custom buildpack
-----> Core Data detected

This buildpack will detect your app if it includes a Core Data model (.xcdatamodel) file. Using rack-core-data, a REST web service that communicates with a Heroku Postgres dev database is generated according to the attributes and relationships of each entity in the data model:

Core Data Model API Endpoints
  • GET /artists
  • POST /artists
  • GET /artists/1
  • PUT /artists/1
  • DELETE /artists/1
  • GET /artists/1/songs

Contact

Mattt Thompson

License

Core Data Buildpack is available under the MIT license. See the LICENSE file for more info.

About

A Heroku Buildpack that generates a REST webservice from a Core Data model

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 100.0%