2014-07-30 23:23:40 +02:00
## Install OSEM
You can run rails apps in different modes (development, production). For more information
about rails and what it can do, see the [rails guides. ](http://guides.rubyonrails.org/getting_started.html )
### Run OSEM in development
2015-12-07 11:40:27 +01:00
We are using [Vagrant ](https://www.vagrantup.com/ ) to create our development environments.
2015-06-30 12:09:21 +02:00
2015-12-07 11:40:27 +01:00
1. Install [Vagrant ](https://www.vagrantup.com/downloads.html ) and [VirtualBox ](https://www.virtualbox.org/wiki/Downloads ). Both tools support Linux, MacOS and Windows.
2015-06-30 12:09:21 +02:00
2015-12-07 11:40:27 +01:00
2. Install [vagrant-exec ](https://github.com/p0deje/vagrant-exec ):
2015-06-30 12:09:21 +02:00
2015-12-07 11:40:27 +01:00
```
vagrant plugin install vagrant-exec
vagrant plugin install vagrant-reload
```
2015-06-30 12:09:21 +02:00
2015-12-07 11:40:27 +01:00
3. Clone this code repository:
2015-06-30 12:09:21 +02:00
2015-12-07 11:40:27 +01:00
```
git clone https://github.com/openSUSE/osem.git
```
2015-06-30 12:09:21 +02:00
2015-12-07 11:40:27 +01:00
4. Execute Vagrant:
2014-07-30 23:23:40 +02:00
2015-12-07 11:40:27 +01:00
```
vagrant up
```
2015-06-30 12:09:21 +02:00
2015-12-07 11:40:27 +01:00
7. Start your OSEM rails app:
2015-06-30 12:09:21 +02:00
2015-12-07 11:40:27 +01:00
```
2016-01-25 19:00:56 +01:00
vagrant exec rails server -b 0.0.0.0
2015-12-07 11:40:27 +01:00
```
2015-06-30 12:09:21 +02:00
2015-12-07 11:40:27 +01:00
8. Check out your OSEM rails app:
You can access the app [localhost:3000 ](http://localhost:3000 ). Whatever you change in your cloned repository will have effect in the development environment. Sign up, the first user will be automatically assigned the admin role.
2014-07-30 23:23:40 +02:00
2015-12-07 11:40:27 +01:00
9. Changed something? Test your changes!:
2015-06-30 12:09:21 +02:00
2015-12-07 11:40:27 +01:00
```
vagrant exec rake test
```
2015-06-30 12:09:21 +02:00
2015-12-07 11:40:27 +01:00
10. Explore the development environment:
2015-06-30 12:09:21 +02:00
2015-12-07 11:40:27 +01:00
```
vagrant ssh
```
2015-06-30 12:09:21 +02:00
2016-03-05 14:09:22 +01:00
**Note**: We use [letter_opener ](https://github.com/ryanb/letter_opener ) in development environment.
However, letter_opener uses launchy to present the emails in your browser which doesn't work in combination with Vagrant.
Therefore we use [letter_open_web ](https://github.com/fgrehm/letter_opener_web ).
You can check out your mails by visiting [localhost:3000/letter_opener ](http://localhost:3000/letter_opener ) if you use Vagrant.
2015-06-30 12:09:21 +02:00
### Run OSEM in production
We recommend to run OSEM in production with [mod_passenger ](https://www.phusionpassenger.com/download/#open_source )
and the [apache web-server ](https://www.apache.org/ ). There are tons of guides on how to deploy rails apps on various
base operating systems. Check Google ;-)
#### Use openID
2014-07-30 23:23:40 +02:00
In order to use the OpenID feature you need to register your application with the providers
(Google and Facebook) and enter their API keys in config/secrets.yml file, changing the existing sample values.
You can register as a devoloper with Google from https://code.google.com/apis/console#:access
You can register as a devoloper with Facebook from https://developers.facebook.com/,
by selecting from the top menu the option 'Apps' -> 'Create a New App'
Unless you add the key and secret for each provider, you will not be able to see the image that
redirects to the login page of the provider.
If you add a provider that does not require developers to register their application, you still need
to create two (2) variables, in config/secrets.yml
with the format of providername_key and providername_secret and add some sample text as their values.
Example:
myprovider_key = 'sample data'
myprovider_secret = 'sample data'
That is required so that the check in app/views/devise/shared/_openid.html.haml will pass and
the image-link to login using the provider will be shown.
2014-08-14 21:38:18 +05:30
2015-06-30 12:09:21 +02:00
#### Email Notifications
Open a separate terminal and go into the directory where the rails app is present, and type the following to start the delayed_jobs worker for sending email notifications.
2014-08-14 21:38:18 +05:30
```
rake jobs:work
```