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
6 changes: 3 additions & 3 deletions .air.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ tmp_dir = "tmp"

[build]
args_bin = []
bin = "./tmp/main"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Take these chanegs out

cmd = "go build -o ./tmp/main ./cmd/api"
bin = "./tmp/main.exe"
cmd = "go build -o ./tmp/main.exe ./cmd/api"
delay = 1000
entrypoint = ["./tmp/main"]
entrypoint = ["./tmp/main.exe"]
exclude_dir = ["assets", "tmp", "vendor", "testdata", "web", "docs", "scripts", "client"]
exclude_file = []
exclude_regex = ["_test.go"]
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ vendor/

# Air live reload
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

remove this as well. If you want have it set in your own global .gitignore

tmp/
.air.toml

# IDE
.idea/
Expand Down
77 changes: 58 additions & 19 deletions client/web/package-lock.json

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

1 change: 1 addition & 0 deletions client/web/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
"react-day-picker": "^9.13.0",
"react-dom": "^19.2.0",
"react-hook-form": "^7.71.1",
"react-phone-number-input": "^3.4.16",
"react-resizable-panels": "^4.4.1",
"react-router-dom": "^7.12.0",
"recharts": "^2.15.4",
Expand Down
Loading