Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

README.md

Rails Protocol

A guide for writing great web apps.

Create Rails app

  • Create a rails project locally

    rails new dummy

  • Create a github repo on http://github.com/new and follow the instructions to add your code to the repo. Create the repo on the Subvisual organizations.

  • Create a dev branch.

  • Create a bin/setup script that sets up everything required to start using the app.

Set up Rails app

Set up the app's dependencies.

cd your/projects/folder
git clone git@github.com:subvisual/name-of-the-app.git
cd name-of-the-app
bin/setup

Deploys & Continuous Integration

Follow our DevOps Protocol.

Git Protocol

Follow the normal Git Protocol

Communication

Follow the normal Communication Protocol