-
-
Notifications
You must be signed in to change notification settings - Fork 383
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rewrite the
.dockerignore
file into a denylist
This should help with not forgetting to add any new directories (such as TShockInstaller and TShockPluginManager, which have been missing until now).
- Loading branch information
Showing
2 changed files
with
20 additions
and
14 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 |
---|---|---|
@@ -1,15 +1,20 @@ | ||
# ignore every file | ||
* | ||
# Ignore all Git metadata and build output (in all directories). | ||
**/.git* | ||
**/bin/ | ||
**/obj/ | ||
|
||
# except for the ones required for building | ||
!i18n/ | ||
!prebuilts/ | ||
!TerrariaServerAPI/ | ||
!TShockAPI/ | ||
!TShockLauncher/ | ||
!TShockLauncher.Tests/ | ||
!TShock.sln | ||
|
||
# but exclude build artifacts | ||
*/bin/ | ||
*/obj/ | ||
# Ignore other specific files that aren't needed for the build itself. | ||
/.all-contributorsrc | ||
/.dockerignore | ||
/.editorconfig | ||
/.vscode | ||
/appveyor.yml | ||
/COPYING | ||
/crowdin.yml | ||
/Dockerfile | ||
/docs | ||
/README.md | ||
/README_cn.md | ||
/renovate.json | ||
/scripts | ||
/SECURITY.md |
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