Table of Contents
##About This is a platform where students of IST can upload and/or download applications that use FénixEdu API. You can also search for applications that work online (for browsers) Each app has a description, comments and vote.
##Configuration
- Download the latest version of play framework from http://www.playframework.com/download
- Rename the application configuration
mv conf/application.conf.template conf/application.conf - Open
conf/application.confand edit the database configurationdb.default.url="jdbc:mysql://<db-server>/<db-name>"
db.default.user=<username>
db.default.password=<password> - Create a file named
configuration.propertiesand specify both your Consumer Key and Secretfenixedu.oauth.consumer.key=<your-consumer-key>fenixedu.oauth.consumer.secret=<your-consumer-secret>fenixedu.callback.url=<your-application-callback-url>fenixedu.base.url=<fenixedu-installation-base-url>Put this file inconf/folder.
##Run To run the application type in terminal
play run
for more commands see play framework documentation.