forked from goauthentik/authentik
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fixes typos. - Fixes stale links. - Tidies Makefile so that Poetry env is optional for hygiene commands. - Remove mismatched YAML naming. - Uses shebang on Python scripts. - Document semver usage. - Redirect OpenAPI schema.
- Loading branch information
1 parent
773c57b
commit 908679d
Showing
18 changed files
with
111 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,32 @@ | ||
akadmin | ||
asgi | ||
assertIn | ||
authentik | ||
authn | ||
crate | ||
docstrings | ||
entra | ||
goauthentik | ||
gunicorn | ||
hass | ||
jwe | ||
jwks | ||
keypair | ||
keypairs | ||
hass | ||
warmup | ||
kubernetes | ||
oidc | ||
ontext | ||
openid | ||
passwordless | ||
plex | ||
saml | ||
scim | ||
singed | ||
assertIn | ||
slo | ||
sso | ||
totp | ||
traefik | ||
# https://github.com/codespell-project/codespell/issues/1224 | ||
upToDate | ||
warmup | ||
webauthn |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,26 @@ version = "2024.12.2" | |
description = "" | ||
authors = ["authentik Team <[email protected]>"] | ||
|
||
[tool.bandit] | ||
exclude_dirs = ["**/node_modules/**"] | ||
|
||
[tool.codespell] | ||
skip = [ | ||
"**/node_modules", | ||
"**/package-lock.json", | ||
"schema.yml", | ||
"unittest.xml", | ||
"./blueprints/schema.json", | ||
"go.sum", | ||
"locale", | ||
"**/dist", | ||
"**/web/src/locales", | ||
"**/web/xliff", | ||
"./website/build", | ||
"*.api.mdx", | ||
] | ||
dictionary = ".github/codespell-dictionary.txt,-" | ||
ignore-words = ".github/codespell-words.txt" | ||
[tool.black] | ||
line-length = 100 | ||
target-version = ['py312'] | ||
|
@@ -122,7 +142,9 @@ kubernetes = "*" | |
ldap3 = "*" | ||
lxml = "*" | ||
msgraph-sdk = "*" | ||
opencontainers = { git = "https://github.com/vsoch/oci-python", rev = "20d69d9cc50a0fef31605b46f06da0c94f1ec3cf", extras = ["reggie"] } | ||
opencontainers = { git = "https://github.com/vsoch/oci-python", rev = "20d69d9cc50a0fef31605b46f06da0c94f1ec3cf", extras = [ | ||
"reggie", | ||
] } | ||
packaging = "*" | ||
paramiko = "*" | ||
psycopg = { extras = ["c"], version = "*" } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
#!/usr/bin/env python3 | ||
"""Generate config for development""" | ||
|
||
from yaml import safe_dump | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/usr/bin/env python3 | ||
""" | ||
Generates a Semantic Versioning identifier, suffixed with a timestamp. | ||
""" | ||
|
||
from time import time | ||
|
||
from authentik import __version__ as package_version | ||
|
||
""" | ||
See: https://semver.org/#spec-item-9 (Pre-release spec) | ||
""" | ||
pre_release_timestamp = int(time()) | ||
|
||
print(f"{package_version}-{pre_release_timestamp}") |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters