Skip to content

Commit

Permalink
TaskOverflow v1
Browse files Browse the repository at this point in the history
  • Loading branch information
begarco committed Jan 25, 2017
1 parent a9a4071 commit 0f417ed
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 2 deletions.
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,15 @@
# TaskOverflow
Grails project at ISIMA
Grails project at ISIMA by Benoit Garçon

## Structure of the project
You can find all this elements in this project:
* The Grails project in the common folders with sources, tests, etc.
* The documentation of the source is in the documentation folder
* The specification and mockups are in document folder.

## Run the application
```
grails war
cd build/libs # see https://github.com/grails/grails-core/issues/9302
java "-Dgrails.env=dev" -jar .\build\libs\TaskOverflow-0.1.war
```
6 changes: 5 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ dependencies {

// secu
compile "org.grails.plugins:spring-security-core:3.1.1"
compile "org.grails.plugins:spring-security-ui:3.0.0.M2"

console "org.grails:grails-console"
profile "org.grails.profiles:web"
Expand All @@ -69,3 +68,8 @@ assets {
minifyJs = true
minifyCss = true
}

// build.gradle
ext {
set "tomcat.version", "8.5.5"
}
Binary file modified document/TaskOverflow_Benoît_Garçon.docx
Binary file not shown.
Binary file modified document/TaskOverflow_Benoît_Garçon.pdf
Binary file not shown.
3 changes: 3 additions & 0 deletions out/production/TaskOverflow/question/create.gsp
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@
</f:field>

<f:field property="tags" bean="question" class="form-control"/>
<div style="display: none">
<f:field property="isSolved" value="false" bean="question" class="hiddenField"/>
</div>
<f:field property="question.content" bean="question" class="form-control">
<g:textArea name="content" class="form-control" style="height: 200px"/>
</f:field>
Expand Down

0 comments on commit 0f417ed

Please sign in to comment.