add copyright/author
This commit is contained in:
parent
6b866feaf7
commit
acc9b17b2f
5
app.py
5
app.py
@ -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
|
||||
|
4
auth.py
4
auth.py
@ -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
|
||||
|
@ -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.
|
||||
"""
|
||||
|
||||
|
||||
|
@ -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
|
||||
#
|
||||
|
3
main.py
3
main.py
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user