Wiki

Clone wiki

campusfloraweb / Home

Campus Flora

Welcome to your the campus flora bitbucket wiki. Resources for forking, installing, and managing your own instance of campus flora are contained here. Feel free to use the issue tracker if you have any questions.

Getting Started

Technology stack / rational
Install Guide
Admin management quick start

Frequently Asked Questions

Q. I cleared my database after performing a migration, and now I can't log in to the admin interface anymore. Help!

In this case, all you need to do is create a new admin user from the rails command line (rails c)

#!ruby
AdminUser.create!(:email => 'admin@example.com', :password => 'password', :password_confirmation => 'password')

Updated