-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added dockerignore, updated gitignore
- Loading branch information
1 parent
695ad3d
commit 5d26e46
Showing
2 changed files
with
12 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 |
---|---|---|
|
@@ -39,3 +39,4 @@ dev-commands.txt | |
/static/ | ||
/avni-server-api/log/ | ||
/blacklisted.json | ||
**/*.env |
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,11 @@ | ||
# Ignore all files in the root directory | ||
* | ||
# Include the src directory | ||
!src/ | ||
# Include the pom.xml file | ||
!pom.xml | ||
# Exclude the target directory and its contents | ||
.gradle/ | ||
.idea/ | ||
.github/ | ||
.circleci/ |