Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 1.4 KB

contributing.md

File metadata and controls

42 lines (29 loc) · 1.4 KB

Contributing

We love pull requests from everyone. We'd like for people to be encouraged to contribute, especially early career or people new to programming.

Fork, then clone the repo:

[email protected]:your-username/columbusrb.com.git

If Docker is installed start the development server by running the following scripts:

script/setup
script/server

If Docker is not installed, please [install][dk] [dk]: https://www.docker.com

After the initial setup you should only need to run script/server.

View in your browser at http://localhost:3000/

A breakdown of the various scripts:

script/setup   # Pull down and setup support images (postgres).
script/server  # Start the development server.
script/run     # Execute arbitrary commands in the web container.  E.g.,
               #   script/run bin/rails runner 'puts BoardMember.count'
script/test    # Run "rake" in the web container.
script/console # Run "rails console" in the web container.
script/cleanup # Remove the development containers.

A pre-requisite is having Docker installed.

Make your change. Push to your fork and submit a pull request.

At this point, you are waiting on us. We like to at least comment on pull requests within three business days (and, typically, one business day). We may suggest some changes or improvements or alternatives.