mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-28 00:46:45 +01:00
86c0c1af91
* Make Google login an Enterprise OR Cloud feature * Fix test * isort * Fix typing * Restore package.json
23 lines
755 B
Python
23 lines
755 B
Python
"""
|
|
Django settings for PostHog Enterprise Edition.
|
|
"""
|
|
import os
|
|
from typing import Dict
|
|
|
|
from posthog.settings import CLICKHOUSE, PRIMARY_DB, TEST
|
|
|
|
# Zapier
|
|
HOOK_EVENTS: Dict[str, str] = {
|
|
# "event_name": "App.Model.Action" (created/updated/deleted)
|
|
"action_defined": "posthog.Action.created_custom",
|
|
"action_performed": "posthog.Action.performed",
|
|
"annotation_created": "posthog.Annotation.created_custom",
|
|
}
|
|
HOOK_FINDER = "ee.models.hook.find_and_fire_hook"
|
|
HOOK_DELIVERER = "ee.models.hook.deliver_hook_wrapper"
|
|
|
|
KAFKA_ENABLED = PRIMARY_DB == CLICKHOUSE and not TEST
|
|
|
|
SOCIAL_AUTH_GOOGLE_OAUTH2_KEY = os.environ.get("SOCIAL_AUTH_GOOGLE_OAUTH2_KEY")
|
|
SOCIAL_AUTH_GOOGLE_OAUTH2_SECRET = os.environ.get("SOCIAL_AUTH_GOOGLE_OAUTH2_SECRET")
|