* Add cloud connection statuses on user page * Add fixes for oncall hobby docker-compose installation * Fix for links and for cloud user status at User settings * Delete cloud api token on cloud disconnect * Merge branch 'dev' into cloud_connection_statuses_on_user_page * Fix cloud statuses for users * Fix usagestats service * Fix phone verification message in users table * added request after syncing user * Add endpoint to create CloudHeartbeat and polish code * Fix imports * Check token and heartbeat setting in setup_hertbeat_integration * Add macthed_users_count in cloud users * Sync users on token change * Fix query param * Fix tests * Heartbit button logic, tab width fix, coount users fix * Solve problem of existent cloud heartbeat integration * Solve problem of existent cloud heartbeat integration 2 * Solve problem of existent cloud heartbeat integration 3 * fix build * build fix, styles for env variables description Co-authored-by: Ildar Iskhakov <ildar.iskhakov@grafana.com> Co-authored-by: Yulia Shanyrova <yulia.shanyrova@grafana.com>
29 lines
1,003 B
Python
29 lines
1,003 B
Python
from .base import * # noqa
|
|
|
|
SECRET_KEY = "u5/IIbuiJR3Y9FQMBActk+btReZ5oOxu+l8MIJQWLfVzESoan5REE6UNSYYEQdjBOcty9CDak2X"
|
|
|
|
MIRAGE_SECRET_KEY = "V9u7DqZ6SrZHP+SvBT19dbB85NZJGgllpwYQ77BSr9kZ6n8ggXMfGd4sCll1TDcAPEolbVD8YbF"
|
|
MIRAGE_CIPHER_IV = "X+VFcDqtxJ5bbU+V"
|
|
|
|
BASE_URL = "http://localhost"
|
|
|
|
CELERY_BROKER_URL = "amqp://rabbitmq:rabbitmq@rabbit_test:5672"
|
|
|
|
# Primary database must have the name "default"
|
|
DATABASES = {
|
|
"default": {
|
|
"ENGINE": "django.db.backends.sqlite3",
|
|
"NAME": os.path.join(BASE_DIR, "sqlite_data/db.sqlite3"), # noqa
|
|
},
|
|
}
|
|
|
|
# Dummy Telegram token (fake one)
|
|
TELEGRAM_TOKEN = "0000000000:XXXXXXXXXXXXXXXXXXXXXXXXXXXX-XXXXXX"
|
|
|
|
SENDGRID_FROM_EMAIL = "dummy_sendgrid_from_email@test.ci-test"
|
|
SENDGRID_SECRET_KEY = "dummy_sendgrid_secret_key"
|
|
TWILIO_ACCOUNT_SID = "dummy_twilio_account_sid"
|
|
TWILIO_AUTH_TOKEN = "dummy_twilio_auth_token"
|
|
|
|
FEATURE_EXTRA_MESSAGING_BACKENDS_ENABLED = True
|
|
EXTRA_MESSAGING_BACKENDS = ["apps.base.tests.messaging_backend.TestOnlyBackend"]
|