13
Moodle on Cloud & Mobile Anuchit Chalothorn [email protected]

Moodle on Cloud and Mobile App

Embed Size (px)

DESCRIPTION

Deploy Moodle on OpenShift Platform as a Service and integrate with Moodle mobile app for your smartphone and tablet

Citation preview

Page 1: Moodle on Cloud and Mobile App

Moodle on Cloud & MobileAnuchit Chalothorn

[email protected]

Page 2: Moodle on Cloud and Mobile App

Tools

● Git● Ruby● Putty (Windows)● Putty Agent (Windows)

Page 3: Moodle on Cloud and Mobile App

OpenShift CLi

Install OpenShift command line tools

gem install rhc

Page 4: Moodle on Cloud and Mobile App

Setup OpenShift Account

Setup OpenShift account

rhc setup

* Register free account with free 3 gears at http://openshift.com

Page 5: Moodle on Cloud and Mobile App

Create Moodle Application - only cartridges

rhc app create moodle php-5.3

Create Moodle App

* Register free account with free 3 gears at http://openshift.com

rhc cartridge add phpmyadmin-4 -a moodle

rhc cartridge add mysql-5.1 -a moodle

rhc cartridge add cron-1.4 -a moodle

Page 6: Moodle on Cloud and Mobile App

Pull Moodle from Git

Pull Moodle quick start (source code) for OpenShift from Git

cd moodle

git pull upstream master

git remote add upstream -m master https://github.com/burningTyger/openshift_moodle.git

Page 7: Moodle on Cloud and Mobile App

Push Moodle source code to OpenShift

Push to OpenShift

git push origin HEAD:master

git commit -a -m “initial release”

git push

Page 8: Moodle on Cloud and Mobile App

Config Moodle

Goto your app url and config your Moodle :)

http://moodle-namespace.rhcloud.com

* Change namespace match to your OpenShift configuration

Page 9: Moodle on Cloud and Mobile App

Config Mobile Web Service

Go To Site Administration > Plugins > Web Service > Mobile and check at Enable web service on mobile devices

Page 11: Moodle on Cloud and Mobile App

Config Moodle AppAfter launch the app, Moodle will let you to config site with following values:

● Site URL● Username● Password

Page 12: Moodle on Cloud and Mobile App

Mobile App

Now you can use Moodle on your mobile/tablet devices

Page 13: Moodle on Cloud and Mobile App