Skip to content

Commit

Permalink
Add quick start docs
Browse files Browse the repository at this point in the history
  • Loading branch information
LucasPickering committed Oct 24, 2023
1 parent 9a6a9b3 commit 1c778eb
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 2 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Slumber

- [Home Page](https://slumber.lucaspickering.me)
- [Installation](https://slumber.lucaspickering.me/artifacts/)
- [Docs](https://slumber.lucaspickering.me/book/)
- [Changelog](https://slumber.lucaspickering.me/changelog/)

Slumber is a TUI (terminal user interface) REST client. Define, execute, and share configurable HTTP requests.

## Example
Expand Down
2 changes: 1 addition & 1 deletion docs/src/SUMMARY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Summary

- [Chapter 1](./chapter_1.md)
- [Quick Start](./quick_start.md)
1 change: 0 additions & 1 deletion docs/src/chapter_1.md

This file was deleted.

22 changes: 22 additions & 0 deletions docs/src/quick_start.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Quick Start

## 1. Installation

See [install instructions](/artifacts/)

## 2. Create a Slumber collection file

Create a file called `slumber.yml` and add the following contents:

```yaml
requests:
- id: get
method: GET
url: https://httpbin.org/get
```
## 3. Run Slumber
```sh
slumber
```

0 comments on commit 1c778eb

Please sign in to comment.