Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 499 Bytes

README.md

File metadata and controls

29 lines (20 loc) · 499 Bytes

A Rails Core Development Environment in Docker

Introduction

This project was inspired by rails-dev-box

How to Use

  1. Build and start up docker containers
host $ docker-compose up -d
  1. Install dependencies
host $ docker-compose exec workspace bash
host $ yarn install
host $ gem install bundler
host $ bundle install
  1. Make changes to Rails core code and run test
host $ cd activemodel
host $ bundle exec rake test