-
Notifications
You must be signed in to change notification settings - Fork 55
/
.env.test
97 lines (73 loc) · 2.72 KB
/
.env.test
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# This file is a "template" of which env vars needs to be defined in your configuration or in an .env file
# Set variables here that may be different on each deployment target of the app, e.g. development, staging, production.
# https://symfony.com/doc/current/best_practices/configuration.html#infrastructure-related-configuration
###> symfony/framework-bundle ###
APP_ENV=test
APP_DEBUG=1
APP_SECRET='15263847596836472738'
APP_LOCALE=en
#TRUSTED_PROXIES=127.0.0.1,127.0.0.2
#TRUSTED_HOSTS=localhost,example.com
###< symfony/framework-bundle ###
###> doctrine/doctrine-bundle ###
# Format described at http://docs.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url
# For a sqlite database, use: "sqlite://%kernel.project_dir%/var/data.db"
# Set "serverVersion" to your server version to avoid edge-case exceptions and extra database calls
DATABASE_URL=sqlite:////%kernel.cache_dir%/test.db3
DOCTRINE_CACHE_DRIVER=array
###< doctrine/doctrine-bundle ###
###> symfony/swiftmailer-bundle ###
# For Gmail as a transport, use: "gmail://username:password@localhost"
# For a generic SMTP server, use: "smtp://localhost:25?encryption=&auth_mode="
# Delivery is disabled by default via "null://localhost"
MAILER_URL=smtp://null
###< symfony/swiftmailer-bundle ###
SWP_DOMAIN=localhost
FS_MAIN_ADAPTER=local_adapter
CACHE_SERVERS='["localhost"]'
SUPERDESK_SERVERS='["localhost:3000"]'
###> sentry/sentry-symfony ###
SENTRY_DSN=''
###< sentry/sentry-symfony ###
SESSION_MEMCACHED_HOST=localhost
SESSION_MEMCACHED_PORT=11211
SESSION_MEMCACHED_PREFIX=sess
SESSION_MEMCACHED_EXPIRE=3600
###> nelmio/cors-bundle ###
CORS_ALLOW_ORIGIN='http://localhost'
###< nelmio/cors-bundle ###
RABBIT_MQ_HOST=127.0.0.1
RABBIT_MQ_PORT=5672
RABBIT_MQ_USER=guest
RABBIT_MQ_PASSWORD=guest
RABBIT_MQ_VHOST='/'
WEBSOCKET_PORT=8080
WEBSOCKET_HOST=0.0.0.0
WEBSOCKET_QUEUE_NAME=swp_websocket
WEBSOCKET_EXCHANGE_NAME=swp_websocket_exchange
PAYWALL_SERVER_URL=localhost:3000
PAYWALL_SERVER_USERNAME=admin
PAYWALL_SERVER_PASSWORD=admin
SUBSCRIPTIONS_CACHE_LIFETIME=86400
FIXTURES_TYPE=test
ELASTICA_HOST=localhost
ELASTICA_PORT=9200
ELASTICA_INDEX_NAME='swp_index-test'
TEST_ENV=doctrine
ANALYTICS_HOST=
ELASTICA_ARTICLE_EXTRA_FIELDS='[]'
KERNEL_CLASS='App\Kernel'
SLUG_REGEX=
REDIRECT_NOT_FOUND_ARTICLES_TO_ROUTE=false
BLACKLISTED_KEYWORDS='["top_feature"]'
EXTERNAL_OAUTH_CLIENT_ID=1
EXTERNAL_OAUTH_CLIENT_SECRET=123
EXTERNAL_OAUTH_ENDPOINT_AUTH=http://localhost:3000/authorize
EXTERNAL_OAUTH_ENDPOINT_TOKEN=http://localhost:3000/oauth/token
EXTERNAL_OAUTH_ENDPOINT_USERINFO=http://localhost:3000/userinfo
GEO_IP_ENABLED=true
WEBP_CONVERSION_ENABLED=false
LOCK_DSN=semaphore
###> symfony/mailer ###
MAILER_DSN=null://null
###< symfony/mailer ###