mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
Add 'Quick Start' to the Overview page
This commit is contained in:
parent
f23ac8573f
commit
faf4bce756
@ -10,14 +10,16 @@ It allows you to monitor services and systems that you otherwise might
|
|||||||
keep browser tabs open for, the kinds of things you don't always need
|
keep browser tabs open for, the kinds of things you don't always need
|
||||||
visible, but might check in on every now and then.
|
visible, but might check in on every now and then.
|
||||||
|
|
||||||
<a href="https://github.com/senorprogrammer/wtf/releases">Download it</a> as a stand-alone, compiled binary, or install it <a href="https://github.com/senorprogrammer/wtf">from source</a>.
|
## Quick Start
|
||||||
|
|
||||||
Once installed, edit your <a
|
1. <a href="https://github.com/senorprogrammer/wtf/releases">Download</a> the stand-alone, compiled binary.
|
||||||
href="/posts/configuration/">configuration file</a> and define the
|
2. Unzip the downloaded file.
|
||||||
modules you want to run.
|
3. From the command line, `cd` into the newly-created `/wtf` directory.
|
||||||
|
4. From the command line, run the app: `./wtf`
|
||||||
|
|
||||||
Configuration instructions for each module can be found in the module
|
This should launch the app in your terminal using the default simple
|
||||||
pages, listed at left.
|
configuration. See <a href="/posts/configuration/">Configuration</a> for
|
||||||
|
more details.
|
||||||
|
|
||||||
## Command-line Options
|
## Command-line Options
|
||||||
|
|
||||||
|
23
dist/CHANGELOG.md
vendored
Normal file
23
dist/CHANGELOG.md
vendored
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
## Changelog
|
||||||
|
|
||||||
|
f23ac85 Fixes bug with default configuration YAML
|
||||||
|
3e004fd Fix a speling mistake in the documentation
|
||||||
|
641dce9 Add Configuration and Keyboard Commands to Overview documentation.
|
||||||
|
ff49ecb Closes #29. wtf.go --help [module name] returns help text if any is available.
|
||||||
|
9e9ef93 Update the readme
|
||||||
|
38cf1d5 Security module now displays logged-in users
|
||||||
|
efaccc8 Added Overview page to documentation
|
||||||
|
5d66b2a Improve the state of the Makefile a bit
|
||||||
|
ca4d6f2 Add 'make dependencies' to the Makefile
|
||||||
|
cd5a796 Fix bug with positioning in which I hard-coded the positions because....?
|
||||||
|
374832f Update the readme
|
||||||
|
ca81908 Add dramatic marketing emphasis to site homepage
|
||||||
|
216a313 Clean up the site sideabar
|
||||||
|
8bb9115 A very basic start to adding some unit tests
|
||||||
|
c190a44 Updated the screenshot to show all the modules
|
||||||
|
e2c27ab Add installation instructions to documentation
|
||||||
|
ca7d867 h2 styling in the site
|
||||||
|
0d1c9ca Add documentation for CmdRunner
|
||||||
|
a62b910 Closes #43. Add CommandRunner module to the app.
|
||||||
|
c3f1402 WIP
|
||||||
|
a6dce55 Update the doc site
|
73
dist/config.yaml
vendored
Normal file
73
dist/config.yaml
vendored
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
project_name: wtf
|
||||||
|
release:
|
||||||
|
github:
|
||||||
|
owner: senorprogrammer
|
||||||
|
name: wtf
|
||||||
|
name_template: '{{.Tag}}'
|
||||||
|
brew:
|
||||||
|
name: wtf
|
||||||
|
commit_author:
|
||||||
|
name: goreleaserbot
|
||||||
|
email: goreleaser@carlosbecker.com
|
||||||
|
install: bin.install "wtf"
|
||||||
|
scoop:
|
||||||
|
commit_author:
|
||||||
|
name: goreleaserbot
|
||||||
|
email: goreleaser@carlosbecker.com
|
||||||
|
builds:
|
||||||
|
- goos:
|
||||||
|
- darwin
|
||||||
|
- linux
|
||||||
|
goarch:
|
||||||
|
- amd64
|
||||||
|
goarm:
|
||||||
|
- "6"
|
||||||
|
targets:
|
||||||
|
- darwin_amd64
|
||||||
|
- linux_amd64
|
||||||
|
main: .
|
||||||
|
ldflags:
|
||||||
|
- -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{.Date}}
|
||||||
|
binary: wtf
|
||||||
|
lang: go
|
||||||
|
archive:
|
||||||
|
name_template: '{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ if .Arm
|
||||||
|
}}v{{ .Arm }}{{ end }}'
|
||||||
|
format: tar.gz
|
||||||
|
files:
|
||||||
|
- licence*
|
||||||
|
- LICENCE*
|
||||||
|
- license*
|
||||||
|
- LICENSE*
|
||||||
|
- readme*
|
||||||
|
- README*
|
||||||
|
- changelog*
|
||||||
|
- CHANGELOG*
|
||||||
|
nfpm:
|
||||||
|
name_template: '{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ if .Arm
|
||||||
|
}}v{{ .Arm }}{{ end }}'
|
||||||
|
bindir: /usr/local/bin
|
||||||
|
snapcraft:
|
||||||
|
name_template: '{{ .ProjectName }}_{{ .Version }}_{{ .Os }}_{{ .Arch }}{{ if .Arm
|
||||||
|
}}v{{ .Arm }}{{ end }}'
|
||||||
|
snapshot:
|
||||||
|
name_template: SNAPSHOT-{{ .Commit }}
|
||||||
|
checksum:
|
||||||
|
name_template: '{{ .ProjectName }}_{{ .Version }}_checksums.txt'
|
||||||
|
dist: dist
|
||||||
|
sign:
|
||||||
|
cmd: gpg
|
||||||
|
args:
|
||||||
|
- --output
|
||||||
|
- $signature
|
||||||
|
- --detach-sig
|
||||||
|
- $artifact
|
||||||
|
signature: ${artifact}.sig
|
||||||
|
artifacts: none
|
||||||
|
env_files:
|
||||||
|
github_token: ~/.config/goreleaser/github_token
|
||||||
|
before:
|
||||||
|
hooks:
|
||||||
|
- make install
|
||||||
|
github_urls:
|
||||||
|
download: https://github.com
|
BIN
dist/darwin_amd64/wtf
vendored
Executable file
BIN
dist/darwin_amd64/wtf
vendored
Executable file
Binary file not shown.
BIN
dist/linux_amd64/wtf
vendored
Executable file
BIN
dist/linux_amd64/wtf
vendored
Executable file
Binary file not shown.
2
dist/wtf_0.0.3_checksums.txt
vendored
Normal file
2
dist/wtf_0.0.3_checksums.txt
vendored
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
0167b691f57126d3a5cd6ffb4a6ba6115a9b3c5a48541db370530761400b9a21 wtf_0.0.3_linux_amd64.tar.gz
|
||||||
|
9905629c87fef6c3483bbdd1f8fcf69f4821da9aa80f05b22a8162a063c7905f wtf_0.0.3_darwin_amd64.tar.gz
|
BIN
dist/wtf_0.0.3_darwin_amd64.tar.gz
vendored
Normal file
BIN
dist/wtf_0.0.3_darwin_amd64.tar.gz
vendored
Normal file
Binary file not shown.
BIN
dist/wtf_0.0.3_linux_amd64.tar.gz
vendored
Normal file
BIN
dist/wtf_0.0.3_linux_amd64.tar.gz
vendored
Normal file
Binary file not shown.
@ -19,7 +19,7 @@
|
|||||||
<guid>http://wtfutil.com/posts/overview/</guid>
|
<guid>http://wtfutil.com/posts/overview/</guid>
|
||||||
<description>WTF is a personal information dashboard for your terminal, developed for those who spend most of their day in the command line.
|
<description>WTF is a personal information dashboard for your terminal, developed for those who spend most of their day in the command line.
|
||||||
It allows you to monitor services and systems that you otherwise might keep browser tabs open for, the kinds of things you don&rsquo;t always need visible, but might check in on every now and then.
|
It allows you to monitor services and systems that you otherwise might keep browser tabs open for, the kinds of things you don&rsquo;t always need visible, but might check in on every now and then.
|
||||||
Download it as a stand-alone, compiled binary, or install it from source.</description>
|
Quick Start Download the stand-alone, compiled binary. Unzip the downloaded file. From the command line, cd into the newly-created /wtf directory.</description>
|
||||||
</item>
|
</item>
|
||||||
|
|
||||||
<item>
|
<item>
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
<guid>http://wtfutil.com/posts/overview/</guid>
|
<guid>http://wtfutil.com/posts/overview/</guid>
|
||||||
<description>WTF is a personal information dashboard for your terminal, developed for those who spend most of their day in the command line.
|
<description>WTF is a personal information dashboard for your terminal, developed for those who spend most of their day in the command line.
|
||||||
It allows you to monitor services and systems that you otherwise might keep browser tabs open for, the kinds of things you don&rsquo;t always need visible, but might check in on every now and then.
|
It allows you to monitor services and systems that you otherwise might keep browser tabs open for, the kinds of things you don&rsquo;t always need visible, but might check in on every now and then.
|
||||||
Download it as a stand-alone, compiled binary, or install it from source.</description>
|
Quick Start Download the stand-alone, compiled binary. Unzip the downloaded file. From the command line, cd into the newly-created /wtf directory.</description>
|
||||||
</item>
|
</item>
|
||||||
|
|
||||||
<item>
|
<item>
|
||||||
|
@ -113,14 +113,18 @@
|
|||||||
keep browser tabs open for, the kinds of things you don’t always need
|
keep browser tabs open for, the kinds of things you don’t always need
|
||||||
visible, but might check in on every now and then.</p>
|
visible, but might check in on every now and then.</p>
|
||||||
|
|
||||||
<p><a href="https://github.com/senorprogrammer/wtf/releases">Download it</a> as a stand-alone, compiled binary, or install it <a href="https://github.com/senorprogrammer/wtf">from source</a>.</p>
|
<h2 id="quick-start">Quick Start</h2>
|
||||||
|
|
||||||
<p>Once installed, edit your <a
|
<ol>
|
||||||
href="/posts/configuration/">configuration file</a> and define the
|
<li><a href="https://github.com/senorprogrammer/wtf/releases">Download</a> the stand-alone, compiled binary.</li>
|
||||||
modules you want to run.</p>
|
<li>Unzip the downloaded file.</li>
|
||||||
|
<li>From the command line, <code>cd</code> into the newly-created <code>/wtf</code> directory.</li>
|
||||||
|
<li>From the command line, run the app: <code>./wtf</code></li>
|
||||||
|
</ol>
|
||||||
|
|
||||||
<p>Configuration instructions for each module can be found in the module
|
<p>This should launch the app in your terminal using the default simple
|
||||||
pages, listed at left.</p>
|
configuration. See <a href="/posts/configuration/">Configuration</a> for
|
||||||
|
more details.</p>
|
||||||
|
|
||||||
<h2 id="command-line-options">Command-line Options</h2>
|
<h2 id="command-line-options">Command-line Options</h2>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user