-
Notifications
You must be signed in to change notification settings - Fork 173
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update git, docker ignore files (#1639)
- Remove unnecessary rule for .rs.bk, rustfmt has been defaulting to overwrite for a very long time now - Move server/svix-server/.gitignore rules up to server/.gitignore - Import missing ignores to .dockerignore
- Loading branch information
Showing
3 changed files
with
23 additions
and
19 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,12 +1,19 @@ | ||
# will have compiled files and executables | ||
target/ | ||
## From .gitignore | ||
# Cargo's artifact dir | ||
/target/ | ||
|
||
/tmp | ||
# Server config files | ||
/svix-server/config.toml | ||
.env | ||
|
||
# These are backup files generated by rustfmt | ||
**/*.rs.bk | ||
# IDE | ||
Session.vim | ||
|
||
# MSVC Windows builds of rustc generate these, which store debugging information | ||
# MSVC debug files | ||
*.pdb | ||
|
||
# Sometimes convenient to have a tempdir for files not tracked by git | ||
tmp/ | ||
|
||
## Docker-specific ignores | ||
Dockerfile |
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,16 +1,15 @@ | ||
# Generated by Cargo | ||
# will have compiled files and executables | ||
debug/ | ||
target/ | ||
# Cargo's artifact dir | ||
/target/ | ||
|
||
/tmp | ||
# Server config files | ||
/svix-server/config.toml | ||
.env | ||
|
||
# These are backup files generated by rustfmt | ||
**/*.rs.bk | ||
# IDE | ||
Session.vim | ||
|
||
# MSVC Windows builds of rustc generate these, which store debugging information | ||
# MSVC debug files | ||
*.pdb | ||
|
||
Session.vim | ||
|
||
.env | ||
# Sometimes convenient to have a tempdir for files not tracked by git | ||
tmp/ |
This file was deleted.
Oops, something went wrong.