Skip to content
This repository has been archived by the owner on Sep 5, 2018. It is now read-only.

adericbourg/proto-poll

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Proto Poll Build Status

Proto Poll is a free poll system. It is released under the GNU GPL3 (see LICENCE).

Deployment

This software uses Play! framework 2.1.0 (download). You may find more informations about installing Play! on its website .

Development

If you want to use the embedded H2 database, just launch:

play run

For debug mode, run:

play debug run

To use a MySQL database, just add -Dconfig.file=conf/mysql.conf to command line. You may want to specify other credentials by overriding the default one using -Ddb.default.url parameter.

Production

Create production package running:

play dist

and deploy running the generated package in dist folder.