Document the installation a bit, run last 3 migrations
This commit is contained in:
parent
ef556f02ca
commit
ca6b63c4e2
2 changed files with 25 additions and 3 deletions
19
README.md
19
README.md
|
|
@ -1,4 +1,19 @@
|
||||||
osem
|
OSEM
|
||||||
====
|
====
|
||||||
|
The Open Source Event Manager. An event management tool tailored to Free and Open Source Software conferences.
|
||||||
|
|
||||||
Open Source Event Manager
|
Installation
|
||||||
|
============
|
||||||
|
* cp config/config.yml.example config/config.yml
|
||||||
|
* cp config/database.yml.example config/database.yml
|
||||||
|
* bundle install
|
||||||
|
* bundle exec rake db:setup
|
||||||
|
* bundle exec rake db:seed
|
||||||
|
* GOTO http://0.0.0.0:3000 and register a user
|
||||||
|
|
||||||
|
Configuration
|
||||||
|
=============
|
||||||
|
To make the first registered user an admin
|
||||||
|
* rails console
|
||||||
|
-> hero = User.find('1')
|
||||||
|
-> hero.role_ids=[3]
|
||||||
|
|
|
||||||
|
|
@ -11,7 +11,7 @@
|
||||||
#
|
#
|
||||||
# It's strongly recommended to check this file into your version control system.
|
# It's strongly recommended to check this file into your version control system.
|
||||||
|
|
||||||
ActiveRecord::Schema.define(:version => 20130705055128) do
|
ActiveRecord::Schema.define(:version => 20130712072609) do
|
||||||
|
|
||||||
create_table "call_for_papers", :force => true do |t|
|
create_table "call_for_papers", :force => true do |t|
|
||||||
t.date "start_date", :null => false
|
t.date "start_date", :null => false
|
||||||
|
|
@ -145,6 +145,12 @@ ActiveRecord::Schema.define(:version => 20130705055128) do
|
||||||
t.text "proposal_additional_speakers"
|
t.text "proposal_additional_speakers"
|
||||||
t.string "video_id"
|
t.string "video_id"
|
||||||
t.string "video_type"
|
t.string "video_type"
|
||||||
|
t.boolean "require_registration"
|
||||||
|
end
|
||||||
|
|
||||||
|
create_table "events_registrations", :id => false, :force => true do |t|
|
||||||
|
t.integer "registration_id"
|
||||||
|
t.integer "event_id"
|
||||||
end
|
end
|
||||||
|
|
||||||
create_table "people", :force => true do |t|
|
create_table "people", :force => true do |t|
|
||||||
|
|
@ -180,6 +186,7 @@ ActiveRecord::Schema.define(:version => 20130705055128) do
|
||||||
t.text "other_dietary_choice"
|
t.text "other_dietary_choice"
|
||||||
t.boolean "handicapped_access_required", :default => false
|
t.boolean "handicapped_access_required", :default => false
|
||||||
t.text "other_special_needs"
|
t.text "other_special_needs"
|
||||||
|
t.boolean "attended", :default => false
|
||||||
end
|
end
|
||||||
|
|
||||||
create_table "registrations_social_events", :id => false, :force => true do |t|
|
create_table "registrations_social_events", :id => false, :force => true do |t|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue