add copyright/author

This commit is contained in:
Anatol Ulrich 2023-10-06 17:08:25 +02:00
parent 6b866feaf7
commit acc9b17b2f
6 changed files with 26 additions and 1 deletions

5
app.py
View File

@ -5,6 +5,11 @@ Basebox microservices example app
this defines an `app:app` module which is loaded from `main.py` or directly via `uvicorn app:app`.
in the latter case configuration can only be passed via OS environment or an env file (`--env-file`), not TOML.
Author(s): anatol.ulrich@basebox.io
Copyright (c) 2023 basebox GmbH. All rights reserved.
"""
# stdlib imports

View File

@ -2,6 +2,10 @@
Authentication module.
Its main export is the `BBPermission` class, used in `permission_classes=[..., BBPermission]`
Further information: [strawberry permssions](https://strawberry.rocks/docs/guides/permissions)
Author(s): anatol.ulrich@basebox.io
Copyright (c) 2023 basebox GmbH. All rights reserved.
"""
# stdlib imports

View File

@ -13,6 +13,10 @@ then inserted into the OS environment (in this case, resulting in
SECTION_FOO=... and SECTION_BAR_BAZ=... ).
The OS environment takes precedence - if a key is found in both env and config,
the config setting will be ignored.
Author(s): anatol.ulrich@basebox.io
Copyright (c) 2023 basebox GmbH. All rights reserved.
"""

View File

@ -1,4 +1,9 @@
"""global constants"""
"""global constants
Author(s): anatol.ulrich@basebox.io
Copyright (c) 2023 basebox GmbH. All rights reserved.
"""
# application log hierarchy root
#

View File

@ -11,6 +11,9 @@ via OS environment or an env file (`--env-file`), not TOML.
For further information, check [uvicorn: deployment](https://www.uvicorn.org/deployment/)
Author(s): anatol.ulrich@basebox.io
Copyright (c) 2023 basebox GmbH. All rights reserved.
"""
# stdlib imports

View File

@ -1,5 +1,9 @@
"""
GraphQL schema definitions
Author(s): anatol.ulrich@basebox.io
Copyright (c) 2023 basebox GmbH. All rights reserved.
"""
# stdlib imports