datasette / datasette-secrets

Manage secrets such as API keys for use with other Datasette plugins
Apache License 2.0
6 stars 0 forks source link

Ship plugins that use this #8

Open simonw opened 7 months ago

simonw commented 7 months ago
simonw commented 7 months ago
@hookimpl
def register_secrets():
    return [
        Secret(
            "OPENAI_API_KEY",
            'An OpenAI API key. Get them from <a href="https://platform.openai.com/api-keys">here</a>.',
        ),
    ]