Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions keepercommander/service/core/logs/service_subprocess.log

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we need this log file?

Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
Keeper Commander Service initialization complete
Pre-loading Keeper parameters for background mode...
Keeper parameters loaded successfully
* Serving Flask app 'keepercommander.service.app'
* Debug mode: off
2025-11-17 14:46:41 [INFO] keeper_service - GET | /api/v2/queue/status | 127.0.0.1 | no-data | 200 | 0.00s
2025-11-17 14:47:35 [INFO] keeper_service - Request f4f90d0c-45a9-4a74-89bc-7c4d46b9c443 queued: search kR3cF9Xm2Lp8NqT1uV6w
2025-11-17 14:47:35 [INFO] keeper_service - POST | /api/v2/executecommand-async | 127.0.0.1 | data={'command': 'search kR3cF9Xm2Lp8NqT1uV6w'} | 202 | 0.00s
2025-11-17 14:47:35 [INFO] keeper_service - Processing request f4f90d0c-45a9-4a74-89bc-7c4d46b9c443: search kR3cF9Xm2Lp8NqT1uV6w
24 changes: 24 additions & 0 deletions keepercommander/service/slack/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# _ __
# | |/ /___ ___ _ __ ___ _ _ ®
# | ' </ -_) -_) '_ \/ -_) '_|
# |_|\_\___\___| .__/\___|_|
# |_|
#
# Keeper Commander - Slack Integration
# Copyright 2025 Keeper Security Inc.
# Contact: [email protected]
#

"""
Keeper Commander Slack Integration

A Slack app that enables secure password management
and approval workflows through Slack, powered by Keeper Commander
Service Mode.
"""

from .app import KeeperSlackApp

__version__ = "1.0.0"
__all__ = ["KeeperSlackApp"]

Loading