-
Notifications
You must be signed in to change notification settings - Fork 2
/
.env
59 lines (54 loc) · 2.09 KB
/
.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# In all environments, the following files are loaded if they exist,
# the latter taking precedence over the former:
#
# * .env contains default values for the environment variables needed by the app
# * .env.local uncommitted file with local overrides
# * .env.$APP_ENV committed environment-specific defaults
# * .env.$APP_ENV.local uncommitted environment-specific overrides
#
# Real environment variables win over .env files.
#
# DO NOT DEFINE PRODUCTION SECRETS IN THIS FILE NOR IN ANY OTHER COMMITTED FILES.
# https://symfony.com/doc/current/configuration/secrets.html
#
# Run "composer dump-env prod" to compile .env files for production use (requires symfony/flex >=1.2).
# https://symfony.com/doc/current/best_practices.html#use-environment-variables-for-infrastructure-configuration
###> symfony/framework-bundle ###
APP_ENV=dev
APP_SECRET=c40eb2a92f0800c971cd314298484f83
###< symfony/framework-bundle ###
SLACK_SIGNING_SECRET=
SLACK_BOT_TOKEN=
OPENAI_API_KEY=
OPENAI_MODEL=gpt-3.5-turbo
OPENAI_ORGANIZATION_ID=
OPENAI_TIMEOUT=60
AWS_REGION=eu-central-1
CHANNEL_MODES_TABLE=
CHAT_GPT_SYSTEM_MESSAGE="You are a chatbot in a company's Slack workspace available to the company's employees to help with everything they ask."
# from App\Enum\ChannelMode
DEFAULT_CHANNEL_MODE=mentions
# a custom message the bot sends upon joining a channel, default will be used if left empty
WELCOME_MESSAGE=
PER_USER_DAILY_LIMIT=-1
TOTAL_DAILY_LIMIT=-1
USER_SETTINGS_TABLE=
APP_MODE=aws-serverless
REDIS_HOST=
VALIDATE_SIGNATURE=1
REPLY_MODE=all-at-once
###> symfony/messenger ###
# Choose one of the transports below
# MESSENGER_TRANSPORT_DSN=amqp://guest:guest@localhost:5672/%2f/messages
# MESSENGER_TRANSPORT_DSN=redis://localhost:6379/messages
MESSENGER_TRANSPORT_DSN=doctrine://default?auto_setup=0
###< symfony/messenger ###
###> rikudou/psr6-dynamo-db-bundle ###
DYNAMODB_CACHE_TABLE=cache
#AWS_REGION=us-east-1
###< rikudou/psr6-dynamo-db-bundle ###
###> symfony/lock ###
# Choose one of the stores below
# postgresql+advisory://db_user:db_password@localhost/db_name
LOCK_DSN=flock
###< symfony/lock ###