Skip to content

Note on latest master

I've merged #174 (closed) . That has some major changes to Genesys and is deployed to https://sandbox.genesys-pgr.org

  1. Create a src/main/resources/genesys.properties file with your own local configuration, especially the DB connection. This file should not ever be committed to the repo.
  2. That's it.

@all Say yes! If you have trouble running latest master let me know!

My genesys.properties has commented-out sections for testing against the mysql or against HSQL:

#db.url=jdbc:mysql://localhost/sandbox?useUnicode=true&characterEncoding=UTF-8&useFastDateParsing=false
#db.driverClassName=com.mysql.jdbc.Driver
#db.username=root
#db.password=

db.url=jdbc:hsqldb:mem:genesys;sql.syntax_mys=true
db.driverClassName=org.hsqldb.jdbc.JDBCDriver
db.username=sa
db.password=
db.showSql=false
db.hbm2ddl=true
auto.createContent=true
hibernate.dialect=org.genesys.blocks.util.BetterHSQLDialect
Edited by Matija Obreza