Skip to content

Commit c16b30d

Browse files
committed
2 parents a78e433 + 842206b commit c16b30d

3 files changed

Lines changed: 12 additions & 12 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Blog Webhook API
1+
# Ghost Webhook API
22

33
![Python](https://img.shields.io/badge/Python-^3.10-blue.svg?logo=python&longCache=true&logoColor=white&colorB=5e81ac&style=flat-square&colorA=4c566a)
44
![FastAPI](https://img.shields.io/badge/FastAPI-^v0.89.1-blue.svg?longCache=true&logo=fastapi&style=flat-square&logoColor=white&colorB=5e81ac&colorA=4c566a)
@@ -14,15 +14,15 @@
1414

1515
![Blog Webhook API](./.github/blog-webhook-api@2x.png?raw=true)
1616

17-
Webhook-driven API to make maintaining blogs easier. Dynamically handles optimizations including image compression, content sanitation, alerting, and feature enablement via data aggregate (suggested searches, trending posts, etc)
17+
Standalone API to compliment Ghost blogs. Accepts Ghost webhook events tiggers & executes task to optimize content and serve new features. Handles optimizations including image compression, content sanitation, alerting, and feature enablement via data aggregate (suggested searches, trending posts, etc)
1818

1919
## Installation
2020

2121
Get up and running with `make deploy`:
2222

2323
```shell
24-
git clone https://github.com/toddbirchard/blog-webhook-api.git
25-
cd blog-webhook-api
24+
git clone https://github.com/toddbirchard/ghost-webhook-api.git
25+
cd ghost-webhook-api
2626
make deploy
2727
```
2828

@@ -85,4 +85,4 @@ Insight to scenarios where Authors likely need assistance.
8585
Notifications when user activity is made on project repos.
8686

8787
* **POST** `/github/pr/`: Trigger SMS notification when contributors open a Github PR in a specified Github org.
88-
* **POST** `/github/issue/`: Trigger SMS notification when contributors open a Github issue in a specified Github org.
88+
* **POST** `/github/issue/`: Trigger SMS notification when contributors open a Github issue in a specified Github org.

config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
class Settings(BaseSettings):
1515
"""FastAPI settings & configuration."""
1616

17-
app_name: str = "Blog Webhook API"
18-
title: str = "Blog Webhook API"
17+
app_name: str = "Ghost Webhook API"
18+
title: str = "Ghost Webhook API"
1919
description: str = "API to automate optimizations for blog sites."
2020
items_per_user: int = 50
2121
debug: bool = True

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[tool.poetry]
2-
name = "blog-webhook-api"
2+
name = "ghost-webhook-api"
33
version = "0.1.1"
44
description = "Webhook-driven API to make maintaining blogs easier."
55
authors = ["Todd Birchard <toddbirchard@gmail.com>"]
66
maintainers = ["Todd Birchard <toddbirchard@gmail.com>"]
77
license = "MIT"
88
readme = "README.md"
9-
homepage = "https://github.com/toddbirchard/blog-webhook-api/"
10-
repository = "https://github.com/toddbirchard/blog-webhook-api/"
11-
documentation = "https://github.com/toddbirchard/blog-webhook-api/blob/master/README.md"
9+
homepage = "https://github.com/toddbirchard/ghost-webhook-api/"
10+
repository = "https://github.com/toddbirchard/ghost-webhook-api/"
11+
documentation = "https://github.com/toddbirchard/ghost-webhook-api/blob/master/README.md"
1212
keywords = ["API", "Rest API", "Automation", "FastAPI", "Webhooks"]
1313

1414
[tool.poetry.dependencies]
@@ -59,7 +59,7 @@ mypy = "*"
5959
run = "asgi:api"
6060

6161
[tool.poetry.urls]
62-
issues = "https://github.com/toddbirchard/blog-webhook-api/issues"
62+
issues = "https://github.com/toddbirchard/ghost-webhook-api/issues"
6363

6464
[build-system]
6565
requires = ["poetry-core>=1.5.0"]

0 commit comments

Comments
 (0)