zoenolan / railsgirls-london

The main site and assets of Rails Girls London website

Home Page:http://railsgirls.london

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Code Climate Build Status Coverage Status

Rails Girls London

This is the website and asset repository for the Rails Girls London website.

This app helps us run our local organisation.

Rails Girls London logo

On the web

Contributing to This Site

  1. Fork the repository
  2. Create your own branch git checkout -b mybranch
  3. Apply your changes
  4. Run rake to verify that the tests are passing
  5. Submit a pull request

Documentation should use Github-flavoured Markdown, but with explicit links.

We use Kippt for collecting resources. The mainpage dynamically pulls in resources from kippt if it's configured. If you'd like to see the links, either sign up for kippt yourself and configure it (look at config/kippt.yml.example for reference), or ask one of the core members for the username/token information. If you don't know what this means, feel free to ask or ignore it all together!

Please stick to Github's style guide

Getting up and running for development and testing

  • bin/rake db:setup
  • bin/rake db:setup RAILS_ENV=test
  • bin/rake db:seed. The application assumes you have at least one city and one Event in your database and the seeds will create these for you.
  • bin/bundle exec rspec. This will run all the tests.

Deployment

Make sure you have access to the Heroku app. One of the organisers can arrange that.

heroku git:remote -r production --app=railsgirlslondon
heroku git:remote -r staging --app=railsgirlslondon-staging

Since we are using Heroku, the deployment is done via a git push to the appropriate remote repository. Since doing it properly involves several steps, we have a Makefile for the deployment. This means you can just use make to deploy:

git checkout staging
make deploy_staging

This will turn on maintenance mode for the staging app, add a tag for the release, push changes to the heroku app, run migrations and turn maintenance mode off again.

Backups

You can create a backup with:

make backup_production
make backup_staging

These commands will create a local copy of the PostgreSQL databases on Heroku.

About

The main site and assets of Rails Girls London website

http://railsgirls.london


Languages

Language:Ruby 48.6%Language:HTML 32.9%Language:CSS 16.9%Language:JavaScript 1.2%Language:Makefile 0.4%