-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit d053fdb
Showing
2 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# .gitignore for Grails 1.2 and 1.3 | ||
# Although this should work for most versions of grails, it is | ||
# suggested that you use the "grails integrate-with --git" command | ||
# to generate your .gitignore file. | ||
|
||
# web application files | ||
/web-app/WEB-INF/classes | ||
|
||
# default HSQL database files for production mode | ||
/prodDb.* | ||
|
||
# general HSQL database files | ||
*Db.properties | ||
*Db.script | ||
|
||
# logs | ||
/stacktrace.log | ||
/test/reports | ||
/logs | ||
|
||
# project release file | ||
/*.war | ||
|
||
# plugin release files | ||
/*.zip | ||
/plugin.xml | ||
|
||
# older plugin install locations | ||
/plugins | ||
/web-app/plugins | ||
|
||
# "temporary" build files | ||
/target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# grails-docker-sample | ||
Sample Grails 3 application with Docker support |