• This repository has been archived on 28/Sep/2022
  • Stars
    star
    430
  • Rank 101,083 (Top 2 %)
  • Language
    Ruby
  • Created over 8 years ago
  • Updated about 3 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Rails Example App

Example Rails codebase that adheres to the RealWorld API spec.

This repo is functionality complete -- PRs and issues welcome!

Check out the rails-5.1 branch to see the updated code for Rails 5.1

Getting started

To get the Rails server running locally:

  • Clone this repo
  • bundle install to install all req'd dependencies
  • rake db:migrate to make all database migrations
  • rails s to start the local server

Code Overview

Dependencies

  • acts_as_follower - For implementing followers/following
  • acts_as_taggable - For implementing tagging functionality
  • Devise - For implementing authentication
  • Jbuilder - Default JSON rendering gem that ships with Rails, used for making reusable templates for JSON output.
  • JWT - For generating and validating JWTs for authentication

Folders

  • app/models - Contains the database models for the application where we can define methods, validations, queries, and relations to other models.
  • app/views - Contains templates for generating the JSON output for the API
  • app/controllers - Contains the controllers where requests are routed to their actions, where we find and manipulate our models and return them for the views to render.
  • config - Contains configuration files for our Rails application and for our database, along with an initializers folder for scripts that get run on boot.
  • db - Contains the migrations needed to create our database schema.

Configuration

camelCase Payloads

null_session

By default Ruby on Rails will throw an exception when a request doesn't contain a valid CSRF token. Since we're using JWT's to authenticate users instead of sessions, we can tell Rails to use an empty session instead of throwing an exception for requests by specifying :null_session in app/controllers/application_controller.rb.

Authentication

Requests are authenticated using the Authorization header with a valid JWT. The application_controller.rb#authenticate_user! filter is used like the one provided by Devise, it will respond with a 401 status code if the request requires authentication that hasn't been provided. The application_controller.rb#authenticate_user filter is called on every request to try and authenticate the Authorization header. It will only interrupt the request if a JWT is present and invalid. The user's id is then parsed from the JWT and stored in an instance variable called @current_user_id. @current_user_id can be used in any controller when we only need the user's id to save a trip to the database. Otherwise, we can call current_user to fetch the authenticated user from the database.

Devise only requires an email and password upon registration. To allow additional parameters on sign up, we use application_controller#configure_permitted_parameters to allow additional parameters.

More Repositories

1

realworld

"The mother of all demo apps" — Exemplary fullstack Medium.com clone powered by React, Angular, Node, Django, and many more
TypeScript
80,404
star
2

react-redux-realworld-example-app

Exemplary real world application built with React + Redux
JavaScript
5,569
star
3

angular-realworld-example-app

Exemplary real world application built with Angular
TypeScript
5,231
star
4

vue-realworld-example-app

An exemplary real-world application built with Vue.js, Vuex, axios and different other technologies. This is a good example to discover Vue for beginners.
JavaScript
4,065
star
5

node-express-realworld-example-app

TypeScript
3,591
star
6

golang-gin-realworld-example-app

Exemplary real world application built with Golang + Gin
Go
2,504
star
7

aspnetcore-realworld-example-app

ASP.NET Core backend implementation for RealWorld
C#
1,935
star
8

django-realworld-example-app

Python
1,611
star
9

spring-boot-realworld-example-app

Example Spring codebase containing real world examples (CRUD, auth, advanced patterns, etc) that adheres to the RealWorld API spec.
Java
1,304
star
10

react-mobx-realworld-example-app

Exemplary real world application built with React + MobX
JavaScript
1,248
star
11

laravel-realworld-example-app

Exemplary real world backend API built with Laravel
PHP
1,194
star
12

flask-realworld-example-app

Exemplary real world JSON API built with Flask (Python)
Python
898
star
13

elixir-phoenix-realworld-example-app

Exemplary real world application built with Elixir + Phoenix
Elixir
892
star
14

kotlin-spring-realworld-example-app

Kotlin
455
star
15

angularjs-realworld-example-app

Exemplary real world application built with Angular 1.5 + ES6
JavaScript
454
star
16

realworld-starter-kit

Starter kit for new RealWorld framework implementations
429
star
17

slim-php-realworld-example-app

Exemplary real world application built with Slim
PHP
427
star
18

swift

A better way to learn swift.
275
star
19

koa-knex-realworld-example

JavaScript
240
star
20

ember-realworld

Ember.js RealWorld Implementation
JavaScript
183
star
21

aurelia-realworld-example-app

Exemplary real world application built with Aurelia
JavaScript
183
star
22

web-components-realworld-example-app

Exemplary real world application built with Vanilla JS Web Components
JavaScript
178
star
23

node-express-prisma-v1-official-app

Official real world application built with Node + Express + Typescript + Prisma
TypeScript
155
star
24

scala-play-realworld-example-app

Exemplary real world application built with Scala 2.13 & Play
Scala
154
star
25

gcp-datastore-cloud-functions-realworld-example-app

Serverless GCP Cloud Functions + Datastore implementation of RealWorld Backend
JavaScript
145
star
26

moleculer-node-realworld-example-app

Exemplary real world application built with Moleculer
JavaScript
103
star
27

apprun-realworld-example-app

Exemplary real world application built with AppRun
TypeScript
103
star
28

cakephp-realworld-example-app

PHP
103
star
29

clojurescript-reframe-realworld-example-app

Exemplary real world application built with ClojureScript + re-frame
Clojure
102
star
30

fsharp-realworld-example-app

Exemplary real world application built with F#
F#
94
star
31

hapijs-realworld-example-app

Real World Hapi.JS + Mongoose backend implementations
JavaScript
78
star
32

clojurescript-keechma-realworld-example-app

Exemplary real world application built with ClojureScript & Keechma
Clojure
72
star
33

reasonml-realworld-example-app

Exemplary real world application built with ReasonML
Reason
59
star
34

conduit-bootstrap-template

HTML
34
star
35

dojo-realworld-example-app

Exemplary real world application built with Dojo2
TypeScript
30
star
36

angularfire-slack

JavaScript
27
star
37

QEWD-realworld-example-app

JavaScript
22
star
38

crizmas-mvc-realworld-example-app

Exemplary real world application built with Crizmas MVC (React)
JavaScript
18
star
39

express-prisma-official-app

TypeScript
17
star
40

jswiki

The wiki for modern Javascript terminology
HTML
13
star
41

conduit-angularjs-final

JavaScript
10
star
42

conduit-django

Python
9
star
43

conduit-sass

HTML
8
star
44

test-routes

JavaScript
6
star
45

thinkdown

Preview markdown as it appears on https://thinkster.io
CSS
5
star
46

conduit-react-client-final

JavaScript
4
star
47

conduit-rails4-api-final

Ruby
4
star
48

realworld-api-action

GitHub Action running a Postman collection to test the compliance of a backend implementation of RealWorld specs
JavaScript
4
star
49

course-boilerplate

3
star
50

mean-stack-tutorial

3
star
51

realworld-e2e-tests

E2e test suite for RealWorld demo
JavaScript
3
star
52

api-realworld

TypeScript
2
star
53

gothinkster.github.io

HTML
2
star
54

conduit-rails4

Ruby
2
star
55

conduit-rails

Ruby
2
star
56

conduit-angular

HTML
1
star
57

thinkster-author

Authoring site for Thinkster.io Authors
1
star
58

blog

Thinkster blog
1
star
59

imperial

JavaScript
1
star
60

conduit-api

TypeScript
1
star
61

transactional

1
star
62

realworld-tribe-angular-app

HTML
1
star
63

realworld-tribe-nestjs-app

TypeScript
1
star
64

realdworld-docs

1
star