Skip to content

Commit

Permalink
env variables
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Becker committed Jun 11, 2024
1 parent 94d8914 commit ba8b189
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions pipeline/TrelloBoard.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ def __init__(self, board_id=None, api_key=None, api_token=None):
self.api_token = api_token if api_token is not None else os.environ.get('TRELLO_API_TOKEN')
self.board_lists = self.__query_lists_in_board()

print(os.environ.get('TRELLO_API_TOKEN'))
print(os.environ.get('TRELLO_API_KEY'))
print(os.environ.get('TRELLO_BOARD_ID'))

def get_board_lists(self):
'''
Gibt alle Listen im Trello Board zurück.
Expand Down

0 comments on commit ba8b189

Please sign in to comment.