Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 415 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 415 Bytes

Rails as an API

Key Topics

  • Using the Command Line to Create a New App

    • API and Postgres flags
    • rails new project-name-here --api --database=postgresql
    • What visible changes do we see after?
  • Configuring the App

    • Adding Rack-CORS Middleware
    • Setting up our Routes
  • Rendering Info as JSON

    • Controller setup
    • Rendering objects as JSON
    • Intro to FastJSON API/Serializing your data