30 lines
1.0 KiB
Markdown
30 lines
1.0 KiB
Markdown
# CLAUDE.md
|
|
|
|
This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.
|
|
|
|
## Project Overview
|
|
|
|
**whatshooked** is a Go project currently in its initial setup phase. The repository structure and development workflow will be established as the project evolves.
|
|
|
|
## Technology Stack
|
|
|
|
- **Language**: Go
|
|
- **Version Control**: Git
|
|
|
|
## Development Setup
|
|
|
|
This is a new Go project. Standard Go development commands will apply once code is added:
|
|
|
|
- `go build` - Build the project
|
|
- `go test ./...` - Run all tests
|
|
- `go test -v ./path/to/package` - Run tests for a specific package
|
|
- `go run .` - Run the main application (once a main package exists)
|
|
- `go mod tidy` - Clean up dependencies
|
|
|
|
## Project Status
|
|
|
|
The repository has been initialized but does not yet contain application code. When adding initial code:
|
|
- Follow standard Go project layout conventions
|
|
- Use `go mod init` if a go.mod file needs to be created
|
|
- Consider the intended purpose of "whatshooked" when designing the architecture
|