Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EDU-2415: Improve CLI Help content #561

Merged
merged 54 commits into from
Jul 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
c1718f7
Start updating the --help text output
josh-berry May 7, 2024
3ff8fb0
EDU-2415: Updates contributor instructions
fairlydurable May 13, 2024
080a465
EDU-2415 Tues Morning 14 May
fairlydurable May 14, 2024
c1b533d
Update temporalcli/commandsmd/commands.md
fairlydurable May 14, 2024
bf90335
Update temporalcli/commandsmd/commands.md
fairlydurable May 14, 2024
5cb2059
Update temporalcli/commandsmd/commands.md
fairlydurable May 14, 2024
ba4c882
Update temporalcli/commandsmd/commands.md
fairlydurable May 14, 2024
0025f2b
Update temporalcli/commandsmd/commands.md
fairlydurable May 14, 2024
9d6fb5f
fixes data-type as not optional for Option entries
fairlydurable May 14, 2024
e5b6c79
Raw payload output
fairlydurable May 14, 2024
e6eae1b
Remove backticks for JSON
fairlydurable May 14, 2024
0cc4950
Fix wording in batch
fairlydurable May 14, 2024
f0e6038
minor fixes, wording
fairlydurable May 14, 2024
67c6fd9
Update temporalcli/commandsmd/commands.md
fairlydurable May 14, 2024
376d407
Update temporalcli/commandsmd/commands.md
fairlydurable May 14, 2024
acddb03
Update temporalcli/commandsmd/commands.md
fairlydurable May 14, 2024
097dfa3
wrapping
fairlydurable May 16, 2024
aa49178
EDU-2415: Pressing onward. Chunk of work, Monday 20 May
fairlydurable May 20, 2024
deb5cd9
Adds 29 May morning work
fairlydurable May 29, 2024
6459244
Need to head to meetings. Pushing for now. WARNING: will not parse
fairlydurable May 29, 2024
29ebdf5
Adds cleanup so the code will generate and compile. Thursday AM start…
fairlydurable May 30, 2024
5b1e142
Simplification work
fairlydurable May 30, 2024
f548995
Stopping for meeting
fairlydurable May 30, 2024
1dda66f
Closing up for the day
fairlydurable May 30, 2024
1f115bc
Adds notes and fixes links
fairlydurable May 31, 2024
4b1d826
Taking a break
fairlydurable May 31, 2024
d901050
Adds list of inconsistent options
fairlydurable May 31, 2024
512c2a3
Need to run for a bit
fairlydurable May 31, 2024
6c9b77c
EDU-2415: Stopping Tuesday evening for a break
fairlydurable Jun 4, 2024
b988d9e
Lunch time.
fairlydurable Jun 5, 2024
136452a
line 1910 of 2100ish
fairlydurable Jun 5, 2024
c551fe7
line 2006
fairlydurable Jun 5, 2024
9ed9841
EDU-2415: First pass complete
fairlydurable Jun 6, 2024
83e3136
Update temporalcli/commandsmd/commands.md
fairlydurable Jun 25, 2024
9ccd16f
EDU-2415: Applies the great delinkening
fairlydurable Jun 25, 2024
1b80134
EDU-2415: Merges updates
fairlydurable Jun 25, 2024
0c2b278
EDU-2415: Addresses all reviewed changes
fairlydurable Jun 25, 2024
b10686a
EDU-2415: Rewraps all the long descriptions
fairlydurable Jul 10, 2024
289e4c8
Corrects syntax errors for missing terminal periods
fairlydurable Jul 11, 2024
3e79037
EDU-2415: Adds `ignores-missing-env` before attempting merges
fairlydurable Jul 11, 2024
3db9d68
Overwriting commands.gen.go from main
fairlydurable Jul 11, 2024
a27719b
EDU-2415: Adds prototype sample to temporal task-queue update-build-ids
fairlydurable Jul 22, 2024
ebdb1bd
Will it build?
fairlydurable Jul 23, 2024
94b4ee0
Adds cautions and notices
fairlydurable Jul 23, 2024
5227d61
mid-morning
fairlydurable Jul 23, 2024
9185715
EDU-2841: Adds audit for --name / --type and aliases
fairlydurable Jul 23, 2024
d2853ae
EDU-2841: Adds build id best naming practice
fairlydurable Jul 23, 2024
130d0d1
EDU-2415: Responds to Chad and Josh's feedback.
fairlydurable Jul 24, 2024
ad52fd1
Update temporalcli/commandsmd/commands.md
fairlydurable Jul 24, 2024
54e1d4c
Update temporalcli/commandsmd/commands.md
fairlydurable Jul 24, 2024
1f6cefc
Update temporalcli/commandsmd/commands.md
fairlydurable Jul 24, 2024
755b2bb
Clarify wording and revert unintentional functional changes
josh-berry Jul 24, 2024
757280c
Address Erica's review comments
josh-berry Jul 25, 2024
4f36b8c
Regen commands.gen.go
josh-berry Jul 25, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
.PHONY: all gen build

all: gen build

gen: temporalcli/commands.gen.go

temporalcli/commands.gen.go: temporalcli/commandsmd/commands.md
go run ./temporalcli/internal/cmd/gen-commands

build:
go build ./cmd/temporal
Loading
Loading