Skip to content

Commit 2746bf7

Browse files
committed
update env example
1 parent b3fe2c3 commit 2746bf7

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.env.example

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
APP_ENV = 'dev'
22
APP_SECRET_KEY = 'fsdfsda32@!#@zrf42c9+n4(^4mlo_@8(t'
33
APP_URL = 'http://127.0.0.1:8000'
4-
ALLOWED_HOSTS=localhost 127.0.0.1 [::1]
4+
ALLOWED_HOSTS = localhost 127.0.0.1 [::1]
55
CSRF_TRUSTED_ORIGINS = http://127.0.0.1:8000
66

77
TWITTER_CONSUMER_KEY = ''
88
TWITTER_CONSUMER_SECRET = ''
99
TWITTER_ACCESS_TOKEN = ''
1010
TWITTER_ACCESS_TOKEN_SECRET = ''
1111

12-
DB_HOST = ''
13-
DB_PORT = ''
14-
DB_USERNAME = ''
15-
DB_PASSWORD = ''
16-
DB_NAME = ''
12+
DB_HOST = 'mysql'
13+
DB_PORT = '3306'
14+
DB_USERNAME = 'root'
15+
DB_PASSWORD = 'root'
16+
DB_NAME = 'collector_db'
1717

18-
REDIS_HOST = ''
19-
REDIS_PORT =
20-
REDIS_URI = ''
18+
REDIS_HOST = 'redis'
19+
REDIS_PORT = 6379
20+
REDIS_URI = 'redis://redis:6379/'

0 commit comments

Comments
 (0)