Skip to content
This repository has been archived by the owner on Dec 23, 2020. It is now read-only.

What to look at after making a new project

Nick Janetakis edited this page Jul 30, 2014 · 3 revisions

The paths are relative to the root rails application.

  # this is where you will tweak a majority of your configuration settings for development
  .env

  # to get an idea of what gems this project is using
  Gemfile

  # to add your own favicon, do not forget to run $ bundle exec rake orats:favicons
  app/assets/favicon/favicon_base.png

  # to review the new application helpers that were added
  app/helpers/application_helper.rb

  # to get familiar with how the page helpers are used
  app/views/pages/home.html.erb

  # to get familiar with the how the layout is rendered
  app/views/layouts

  # to see what binary binstubs were created
  bin

  # to see what new configuration and initializers were added
  config
  config/routes.rb
  config/initializers

  # to understand how the new rake tasks work
  lib/tasks/orats

  # to customize the http error pages and view your generated favicons
  public