mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-11-28 13:10:24 +08:00
Huge PR. 135 commits here to rebuild waveapps into the "Tsunami" framework.
* Simplified API
* Updated system.md prompt
* Basic applications building and running
* /api/config and /api/data support
* tailwind styling
* no need for async updates
* goroutine/timer primitives for async routing handling
* POC for integrating 3rd party react frameworks (recharts)
* POC for server side components (table.go)
* POC for interacting with apps via /api/config (tsunamiconfig)
Checkpoint. Still needs to be tightly integrated with Wave (lifecycle, AI interaction, etc.) but looking very promising 🚀
23 lines
765 B
Modula-2
23 lines
765 B
Modula-2
module tsunami/app/cpuchart
|
|
|
|
go 1.24.6
|
|
|
|
require (
|
|
github.com/shirou/gopsutil/v4 v4.25.8
|
|
github.com/wavetermdev/waveterm/tsunami v0.0.0
|
|
)
|
|
|
|
require (
|
|
github.com/ebitengine/purego v0.8.4 // indirect
|
|
github.com/go-ole/go-ole v1.2.6 // indirect
|
|
github.com/google/uuid v1.6.0 // indirect
|
|
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
|
|
github.com/outrigdev/goid v0.3.0 // indirect
|
|
github.com/power-devops/perfstat v0.0.0-20240221224432-82ca36839d55 // indirect
|
|
github.com/tklauser/go-sysconf v0.3.15 // indirect
|
|
github.com/tklauser/numcpus v0.10.0 // indirect
|
|
github.com/yusufpapurcu/wmi v1.2.4 // indirect
|
|
golang.org/x/sys v0.35.0 // indirect
|
|
)
|
|
|
|
replace github.com/wavetermdev/waveterm/tsunami => /Users/mike/work/waveterm/tsunami
|