Skip to content

pwnela/RailsGirlsApp

 
 

Repository files navigation

RailsGirlsApp Build Status

You visited a Rails Girls Workshop and now want to join a project group to really learn the way of the code? This little app is just the one for you!

An overview of who meets when, where, with whom to work on what.

Just some general information:

Ruby version 2.0+

Rails version 4.0

Make sure you have ImageMagick installed.

In Terminal run (OSX):

brew install imagemagick

Or for Linux run (or with the package manager of your choice):

sudo apt-get install imagemagick

Get the code

Get the code from this repo

git clone

Run locally

Install all the gems

bundle install

Spice up the database

rake db:migrate

Run the server

rails s 

et voilá

Git: branches

Create new branch (you should be in the directory of the project)

git branch Name_of_your_branch

Switch to the newly created branch (the same if you need to change to the branch that already exist)

git checkout Name_of_your_branch

Or for lazy people like Tobi (does both steps at the same time):

git checkout -b Name_of_your_branch    

Push the new branch to the repository (with some commits or just "bare" branch)

git push --set-upstream origin Name_of_your_branch

Delete local branch

git branch -D Name_of_your_branch

Git: commit your changes

Make changes, then

git add -A

Tell the others what you did

git commit -m “description of changes”

Off to Github

git push

Deploy to shelly cloud

We are now graciously hosted by shelly

  1. Nudge Tobi to invite you to the shelly cloud
  2. Follow the shelly cloud join an existing cloud steps
  3. You can now deploy with git push shelly (just like heroku, just with a shelly)

App runs at: http://railsgirlsapp.shellyapp.com/

About

A web app to coordinate railsgirls project groups

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 93.8%
  • CSS 3.5%
  • CoffeeScript 1.6%
  • JavaScript 1.1%