mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
More documentation
This commit is contained in:
parent
f8317a4482
commit
55799aa018
1 changed files with 20 additions and 5 deletions
25
README.md
25
README.md
|
|
@ -2,9 +2,9 @@ OSEM
|
||||||
====
|
====
|
||||||
The Open Source Event Manager. An event management tool tailored to Free and Open Source Software conferences.
|
The Open Source Event Manager. An event management tool tailored to Free and Open Source Software conferences.
|
||||||
|
|
||||||
Installation
|
Local Installation
|
||||||
============
|
==================
|
||||||
* install [ImageMagick](http://www.imagemagick.org/)
|
* install [ImageMagick](http://www.imagemagick.org/) to your system
|
||||||
* cp config/config.yml.example config/config.yml
|
* cp config/config.yml.example config/config.yml
|
||||||
* cp config/database.yml.example config/database.yml
|
* cp config/database.yml.example config/database.yml
|
||||||
* bundle install
|
* bundle install
|
||||||
|
|
@ -12,9 +12,24 @@ Installation
|
||||||
* bundle exec rake db:seed
|
* bundle exec rake db:seed
|
||||||
* GOTO http://0.0.0.0:3000 and register a user
|
* GOTO http://0.0.0.0:3000 and register a user
|
||||||
|
|
||||||
|
Prodcution Deployment
|
||||||
|
=====================
|
||||||
|
Coming soon, but basically like any other rails app...
|
||||||
|
|
||||||
Configuration
|
Configuration
|
||||||
=============
|
=============
|
||||||
To make the first registered user an admin
|
To make the first registered user an admin
|
||||||
* rails console
|
* rails console
|
||||||
-> hero = User.find('1')
|
* hero = User.find('1')
|
||||||
-> hero.role_ids=[3]
|
* hero.role_ids=[3]
|
||||||
|
|
||||||
|
|
||||||
|
Caveats
|
||||||
|
=======
|
||||||
|
If you have problems with rails console, try this in the Gemfile
|
||||||
|
|
||||||
|
* gem 'rb-readline', '~>0.4.2'
|
||||||
|
|
||||||
|
If you have problems with jquery-ui try this in the Gemfile
|
||||||
|
|
||||||
|
* gem "jquery-rails", "~> 2.3.0"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue