bookshelf create
Usage
bookshelf create [OPTIONS] STORY_NAME
Description
Use bookshelf create
to create a new story for your bookshelf. The story name must be unique between all stories in your bookshelf.
Options
Name | Shorthand | Default | Description |
---|---|---|---|
--force | -f | Usually, the command will not start a story that already exists. This flag disables these checks, use it with care. | |
--tags | -t | Comma-separated list of tags that you want to apply to the story. | |
--start-chapter | False | Optionally start the first chapter of the story you are creating right away. |
Examples
Create a new story
root bookshelf create example-story —tags hello,world
╭───────────────── 📖 Story 📖 ──────────────────╮
│ ✏️ Name: │
│ example-story │
│ 🗓️ Start Date: │
│ 22/10/2023 │
│ ⏱️ Elapsed Time: │
│ 0 hours, 0 minutes, 0 seconds │
│ 🏷️ Tags: │
│ [] │
│ │
│ [Press CTRL+C to exit] │
╰────────────────────────────────────────────────╯
Create a new story with tags
root bookshelf create example-story -t hello,world
╭───────────────── 📖 Story 📖 ──────────────────╮
│ ✏️ Name: │
│ example-story │
│ 🗓️ Start Date: │
│ 22/10/2023 │
│ ⏱️ Elapsed Time: │
│ 0 hours, 0 minutes, 0 seconds │
│ 🏷️ Tags: │
│ [‘hello’, ‘world’] │
│ │
│ [Press CTRL+C to exit] │
╰────────────────────────────────────────────────╯