Skip to content

Development FAQ

Connor Shea edited this page May 10, 2015 · 4 revisions

How do I make myself an admin on my local build?

  1. rails c
  2. u = User.where(name: "YOUR NAME").first
  3. u.role = :admin
  4. u.save!
  5. quit

Should I use JQuery or CSS for animations?

Use CSS. This HTML5 Animation Speed Test should explain why. If you don't notice any difference at the default 500 dots, keep adding more until one starts lagging.

Clone this wiki locally