mirror of
https://github.com/wavetermdev/waveterm.git
synced 2024-12-23 16:58:27 +01:00
17 lines
352 B
Markdown
17 lines
352 B
Markdown
# SH2 Server Commands
|
|
|
|
```bash
|
|
# @scripthaus command dump-schema-dev
|
|
sqlite3 /Users/mike/prompt-dev/prompt.db .schema > db/schema.sql
|
|
```
|
|
|
|
```bash
|
|
# @scripthaus command opendb-dev
|
|
sqlite3 /Users/mike/prompt-dev/prompt.db
|
|
```
|
|
|
|
```bash
|
|
# @scripthaus command build
|
|
go build -ldflags "-X main.BuildTime=$(date +'%Y%m%d%H%M')" -o bin/local-server ./cmd
|
|
```
|