- Add frontend React application with log viewing components - Implement backend Go server for log tailing and SSE streaming - Include build scripts for both frontend and backend - Set up basic authentication and file handling - Add styling and log formatting capabilities
42 lines
484 B
Plaintext
42 lines
484 B
Plaintext
# Binaries for programs and plugins
|
|
*.exe
|
|
*.exe~
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
|
|
# Test binary, built with `go test -c`
|
|
*.test
|
|
|
|
# Output of the go coverage tool, specifically when used with LiteIDE
|
|
*.out
|
|
|
|
# Dependency directories (remove the comment below to include it)
|
|
vendor/
|
|
|
|
# Go workspace file
|
|
go.work
|
|
|
|
# Build artifacts
|
|
gotail
|
|
gotail.exe
|
|
|
|
# IDE specific files
|
|
.idea/
|
|
*.iml
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS specific files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Log files
|
|
*.log
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp
|