-
Notifications
You must be signed in to change notification settings - Fork 205
/
.cursorrules
37 lines (34 loc) · 919 Bytes
/
.cursorrules
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// HTMX with Go (Basic Setup) .cursorrules
// HTMX and Go best practices
const htmxGoBestPractices = [
"Use html/template for server-side rendering",
"Implement http.HandlerFunc for handling HTMX requests",
"Utilize gorilla/mux for routing if needed",
"Use encoding/json for JSON responses",
"Implement proper error handling and logging",
"Utilize context for request cancellation and timeouts",
];
// Folder structure
const folderStructure = `
cmd/
main.go
internal/
handlers/
models/
templates/
static/
css/
js/
go.mod
go.sum
`;
// Additional instructions
const additionalInstructions = `
1. Use semantic HTML5 elements with HTMX attributes
2. Implement proper CSRF protection
3. Utilize HTMX extensions when needed
4. Use hx-boost for full page navigation
5. Follow Go's idiomatic error handling
6. Implement graceful shutdown for the server
7. Use Go modules for dependency management
`;