feat: remade scripts to be simpler
This commit is contained in:
Executable
+14
@@ -0,0 +1,14 @@
|
||||
#!/bin/bash
|
||||
echo "Installing Go and Bun development tools..."
|
||||
|
||||
# Go tools
|
||||
if command -v go &> /dev/null; then
|
||||
go install -tags 'postgres' github.com/golang-migrate/migrate/v4/cmd/migrate@latest
|
||||
go install github.com/cosmtrek/air@latest
|
||||
go install github.com/swaggo/swag/cmd/swag@latest
|
||||
fi
|
||||
|
||||
# Bun tools
|
||||
if command -v bun &> /dev/null; then
|
||||
bun install -g dbdocs @dbml/cli
|
||||
fi
|
||||
Reference in New Issue
Block a user