Skip to content

Commit

Permalink
feat: added dockerignore file and use proper sqlx feature
Browse files Browse the repository at this point in the history
  • Loading branch information
BenJeau committed Jun 8, 2024
1 parent 5d7b3cb commit 6cdff92
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions backend/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Generated by Cargo
# will have compiled files and executables
debug/
target/

# These are backup files generated by rustfmt
**/*.rs.bk

# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb

# Mac OS X normal file system metadata
.DS_Store
2 changes: 1 addition & 1 deletion backend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ sentry-tower = { version = "0.32.3", features = ["http"] }
sentry-tracing = "0.32.3"
serde = { version = "1.0.201", features = ["derive"] }
serde_json = "1.0.117"
sqlx = { version = "0.7.4", features = ["chrono", "json", "macros", "migrate", "postgres", "runtime-tokio-native-tls"] }
sqlx = { version = "0.7.4", features = ["chrono", "json", "macros", "migrate", "postgres", "runtime-tokio", "tls-native-tls"] }
strum = { version = "0.26.2", features = ["derive"] }
tokio = { version = "1.37.0", features = ["parking_lot", "rt", "rt-multi-thread"] }
tokio-stream = "0.1.15"
Expand Down

0 comments on commit 6cdff92

Please sign in to comment.