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

docs: update CLI command docs #116

Merged
merged 1 commit into from
Jan 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion blurry/commands/clean.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ def clean_build_directory():
except FileNotFoundError:
pass

print(f"Cleaned build directory: {build_directory}")
print(f"Cleaned build directory: {build_directory} 🧹")
6 changes: 3 additions & 3 deletions docs/content/commands/build.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
+++
"@type" = "WebPage"
name = "Commands: build"
abstract = "Documentation for Blurry's build command"
abstract = "The build command for Blurry, a Python static site generator focused on page speed and SEO"
datePublished = 2023-04-09
dateModified = 2025-01-07
dateModified = 2025-01-08
+++

# Commands: build
# Commands: `build`

## Description

Expand Down
14 changes: 13 additions & 1 deletion docs/content/commands/clean.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,22 @@
name = "Commands: clean"
abstract = "The clean command for Blurry, a Python static site generator focused on page speed and SEO"
datePublished = 2024-12-28
dateModified = 2024-01-08
+++

# Commands: clean
# Commands: `clean`

## Description

`clean` removes the build folder and all of its contents.

The build folder is specified by the `build_directory_name` [setting](./../configuration/settings.md), and defaults to `./dist/`.

## Usage

Example usage:

```shell
$ blurry clean
Cleaned build directory: /home/john/Code/blurry/docs/dist 🧹
```
6 changes: 3 additions & 3 deletions docs/content/commands/init.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
+++
"@type" = "WebPage"
name = "Commands: init"
abstract = "Documentation for Blurry's build command"
datePublished = 2025-01-07
abstract = "The init command for Blurry, a Python static site generator focused on page speed and SEO"
datePublished = 2025-01-08
+++

# Commands: init
# Commands: `init`

## Description

Expand Down
4 changes: 2 additions & 2 deletions docs/content/commands/runserver.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
+++
"@type" = "WebPage"
name = "Commands: runserver"
abstract = "Documentation for Blurry's runserver command"
abstract = "The runserver command for Blurry, a Python static site generator focused on page speed and SEO"
datePublished = 2023-04-09
dateModified = 2024-01-03
dateModified = 2024-01-08
+++

# Commands: `runserver`
Expand Down
Loading