Skip to content

Commit

Permalink
Update git, docker ignore files
Browse files Browse the repository at this point in the history
- 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
svix-jplatte committed Jan 15, 2025
1 parent 49a69b0 commit 702bc55
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 19 deletions.
19 changes: 13 additions & 6 deletions server/.dockerignore
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
21 changes: 10 additions & 11 deletions server/.gitignore
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/
2 changes: 0 additions & 2 deletions server/svix-server/.gitignore

This file was deleted.

0 comments on commit 702bc55

Please sign in to comment.