Chaiwat Matarak
Results
2
issues of
Chaiwat Matarak
Is it possible for set baseUrl example: `http://localhost:3000/dashboard`
`build.gradle` ```groovy dependencies { runtime 'org.grails.plugins:grails-aws:2.0.4' } ``` I already add my credential to `grails-app/conf/application.yml` ```yaml grails: plugins: aws: credentials: accessKey: myAccessKey secretKey: mySecretKey s3: bucket: my-bucket-name ``` `controller` ```groovy...