Playing with docs
This commit is contained in:
parent
95c69cd127
commit
a2b041c014
6
.gitignore
vendored
6
.gitignore
vendored
@ -30,4 +30,8 @@ Cargo.lock
|
|||||||
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
||||||
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
||||||
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
||||||
#.idea/
|
#.idea/
|
||||||
|
|
||||||
|
# mdbook
|
||||||
|
/docs/output
|
||||||
|
/docs/src/scripts
|
@ -1,15 +1,20 @@
|
|||||||
#! /usr/bin/env python3
|
#! /usr/bin/env python3
|
||||||
"""1password bridge
|
"""
|
||||||
|
# `1p-bridge`: 1password bridge
|
||||||
|
|
||||||
This script can expose the `op` cli utility as a web service.
|
This script can expose the `op` cli utility as a web service.
|
||||||
Callers can then pass a 1password service token through an HTTP request,
|
Callers can then pass a 1password service token through an HTTP request,
|
||||||
and are able to read secrets from 1password.
|
and are able to read secrets from 1password.
|
||||||
|
|
||||||
|
This allows the use of 1password as a basic secret store for self-hosted applications.
|
||||||
|
|
||||||
|
```
|
||||||
HTTP routes:
|
HTTP routes:
|
||||||
/whoami
|
/whoami
|
||||||
GET: Returns the current user's information
|
GET: Returns the current user's information
|
||||||
/read/<path:uri>
|
/read/<path:uri>
|
||||||
GET: Reads the item at the specified URI
|
GET: Reads the item at the specified URI
|
||||||
|
```
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
|
@ -1,4 +1,10 @@
|
|||||||
#! /usr/bin/env python3
|
#! /usr/bin/env python3
|
||||||
|
"""
|
||||||
|
# `ableton-linux`: Ableton Wrapper for Linux
|
||||||
|
|
||||||
|
This script handles the necessary setup and pre-configuration to run Ableton Live on Linux with low-latency audio.
|
||||||
|
"""
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
#! /usr/bin/env python3
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
import sys
|
import sys
|
||||||
import csv
|
import csv
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
#! /usr/bin/env python3
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
import os
|
import os
|
||||||
from typing import *
|
from typing import *
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
#! /usr/bin/env python3
|
||||||
|
|
||||||
import argparse
|
import argparse
|
||||||
import sys
|
import sys
|
||||||
import re
|
import re
|
||||||
|
Loading…
x
Reference in New Issue
Block a user