We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3fe2c3 commit 2746bf7Copy full SHA for 2746bf7
.env.example
@@ -1,20 +1,20 @@
1
APP_ENV = 'dev'
2
APP_SECRET_KEY = 'fsdfsda32@!#@zrf42c9+n4(^4mlo_@8(t'
3
APP_URL = 'http://127.0.0.1:8000'
4
-ALLOWED_HOSTS=localhost 127.0.0.1 [::1]
+ALLOWED_HOSTS = localhost 127.0.0.1 [::1]
5
CSRF_TRUSTED_ORIGINS = http://127.0.0.1:8000
6
7
TWITTER_CONSUMER_KEY = ''
8
TWITTER_CONSUMER_SECRET = ''
9
TWITTER_ACCESS_TOKEN = ''
10
TWITTER_ACCESS_TOKEN_SECRET = ''
11
12
-DB_HOST = ''
13
-DB_PORT = ''
14
-DB_USERNAME = ''
15
-DB_PASSWORD = ''
16
-DB_NAME = ''
+DB_HOST = 'mysql'
+DB_PORT = '3306'
+DB_USERNAME = 'root'
+DB_PASSWORD = 'root'
+DB_NAME = 'collector_db'
17
18
-REDIS_HOST = ''
19
-REDIS_PORT =
20
-REDIS_URI = ''
+REDIS_HOST = 'redis'
+REDIS_PORT = 6379
+REDIS_URI = 'redis://redis:6379/'
0 commit comments