Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/target
.env
.env.production
.env.test
.env.test
.idea
45 changes: 45 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'helios-master-backend'",
"cargo": {
"args": [
"build",
"--bin=helios-master-backend",
"--package=helios-master-backend"
],
"filter": {
"name": "helios-master-backend",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'helios-master-backend'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=helios-master-backend",
"--package=helios-master-backend"
],
"filter": {
"name": "helios-master-backend",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@
"[rust]": {
"editor.defaultFormatter": "rust-lang.rust-analyzer",
"editor.formatOnSave": true
}
},
"Prettier-SQL.SQLFlavourOverride": "postgresql"
}
13 changes: 7 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,15 @@ mime = "0.3"
oauth2 = "4.1"
once_cell = "1.19.0"
openssl = "*"
rand = "0.8"
rand_core = { version = "0.6.3", features = ["std"] }
reqwest = { version = "0.12", features = ["json"] }
resend-rs = "0.9"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1.39", features = ["full"] }
tokio = { version = "1.40", features = ["full"] }
tower = { version = "0.5", features = ["full"] }
tower-http = { version = "0.5.0", features = ["full"] }
tower-http = { version = "0.6", features = ["full"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "1.10", features = [
Expand Down
66 changes: 0 additions & 66 deletions migrations/2024-08-02-114025_initial/down.sql

This file was deleted.

166 changes: 0 additions & 166 deletions migrations/2024-08-02-114025_initial/up.sql

This file was deleted.

9 changes: 0 additions & 9 deletions migrations/2024-08-11-120853_email_confirmation/down.sql

This file was deleted.

23 changes: 0 additions & 23 deletions migrations/2024-08-11-120853_email_confirmation/up.sql

This file was deleted.

Loading
Loading