.plugins.content.2.6.1.source-code.application.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of content Show documentation
Show all versions of content Show documentation
A plugin used to manage contents like static pages, menus etc. at one place.
Also provides shortened and user friendly urls.
/*
* Copyright (c) 2016, CauseCode Technologies Pvt Ltd, India.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or
* without modification, are not permitted.
*/
grails.serverURL = 'http://localhost:8080'
grails.resources.modules = {
validator = {
resource url: '/js/jquery.validate.js'
}
}
environments {
test {
grails.gorm.autoFlush = true
}
}
grails.plugin.springsecurity.securityConfigType = "Annotation"
ckeditor = {
upload = {
basedir = "/images/"
overwrite = false
image = {
browser = true
upload = true
allowed = ['jpg', 'gif', 'jpeg', 'png']
denied = []
}
}
}
grails.app.context = "/"
grails.views.default.codec = "none" // none, html, base64
grails.views.gsp.encoding = "UTF-8"