Skip to content

Commit cf6ce08

Browse files
committed
Update docs
1 parent 758f48f commit cf6ce08

5 files changed

Lines changed: 15 additions & 14 deletions

File tree

.github/workflows/gh-pages.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
name: Deploy Docs to GitHub Pages
1+
# Deploy Docs to GitHub Pages
2+
name: docs
23

34
on:
45
push:

.github/workflows/release.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
# Publish package on main branch if it's tagged with 'v*'
2-
# Ref: https://github.community/t/run-workflow-on-push-tag-on-specific-branch/17519
3-
1+
# Build & Release
42
name: release
53

64
# Controls when the action will run.
75
on:
8-
# Triggers the workflow on push or pull request events but only for the master branch
6+
# Publish package on main branch if it's tagged with 'v*'
7+
# Ref: https://github.community/t/run-workflow-on-push-tag-on-specific-branch/17519
98
push:
109
tags:
1110
- 'v*'

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@
66
[![PyPI license](https://img.shields.io/pypi/l/secrets-cache.svg)](https://pypi.org/project/secrets-cache/)
77
[![PyPI Python versions](https://img.shields.io/pypi/pyversions/secrets-cache.svg)](https://pypi.org/project/secrets-cache/)
88
[![GitHub Actions](https://github.com/rnag/py-secrets-cache/actions/workflows/release.yml/badge.svg)](https://github.com/rnag/py-secrets-cache/actions/workflows/release.yml)
9-
[![Documentation Status](https://github.com/rnag/py-secrets-cache/actions/workflows/pages/pages-build-deployment/badge.svg)](https://ritviknag.com/py-secrets-cache/)
9+
[![Documentation Status](https://github.com/rnag/py-secrets-cache/actions/workflows/gh-pages.yml/badge.svg)](https://secrets-cache.ritviknag.com)
1010

11-
!!! tip
12-
Check out [secrets-cache-cdk-example](https://github.com/rnag/secrets-cache-cdk-example)
13-
for a ready-to-deploy AWS Lambda + CDK project demonstrating `secrets-cache` usage
14-
with Secrets Manager and SSM parameters, including caching timings.
11+
> [!TIP]
12+
> Check out [secrets-cache-cdk-example](https://github.com/rnag/secrets-cache-cdk-example)
13+
> for a ready-to-deploy AWS Lambda + CDK project demonstrating `secrets-cache` usage
14+
> with Secrets Manager and SSM parameters, including caching timings.
1515
1616
Cache secrets locally from AWS Secrets Manager and other secret stores, with optional local caching for development or Lambda-friendly usage.
1717

1818
* PyPI package: https://pypi.org/project/secrets-cache/
1919
* Free software: MIT License
20-
* Documentation: https://ritviknag.com/py-secrets-cache/
20+
* Documentation: https://secrets-cache.ritviknag.com
2121

2222
## Installation
2323

mkdocs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
site_name: "Secrets Cache"
2-
site_url: "http://ritviknag.com/secrets-cache/"
2+
site_url: "https://secrets-cache.ritviknag.com"
33
theme:
44
name: material
55
features:
66
- navigation.tabs
77
- navigation.instant
88
markdown_extensions:
9-
- admonition # enables [!TIP], [!NOTE], etc.
9+
- admonition
1010
- codehilite
1111
- toc:
1212
permalink: true
@@ -24,4 +24,4 @@ docs_dir: docs
2424
plugins:
2525
- search
2626
- include-markdown
27-
27+
- gh-admonitions # enables [!TIP], [!NOTE], etc.

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ local = [
4545
docs = [
4646
'mkdocs',
4747
'mkdocs-material',
48+
'mkdocs-github-admonitions-plugin',
4849
'mkdocs-markdownextradata-plugin',
4950
'mkdocs-macros-plugin',
5051
'mkdocs-include-markdown-plugin',

0 commit comments

Comments
 (0)