mirror of
https://github.com/PokeAPI/pokeapi
synced 2025-02-16 12:38:25 +00:00
chore: lint
This commit is contained in:
parent
1a3e61ec0e
commit
c0dd3004de
1 changed files with 2 additions and 2 deletions
|
@ -9,14 +9,14 @@ DATABASES = {
|
|||
"USER": os.environ.get("POSTGRES_USER", "ash"),
|
||||
"PASSWORD": os.environ.get("POSTGRES_PASSWORD", "pokemon"),
|
||||
"HOST": os.environ.get("POSTGRES_HOST", "db"),
|
||||
"PORT": os.environ.get("POSTGRES_PORT", 5432)
|
||||
"PORT": os.environ.get("POSTGRES_PORT", 5432),
|
||||
}
|
||||
}
|
||||
|
||||
CACHES = {
|
||||
"default": {
|
||||
"BACKEND": "django_redis.cache.RedisCache",
|
||||
"LOCATION": os.environ.get("REDIS_CONNECTION_STRING", "redis://cache:6379/1") ,
|
||||
"LOCATION": os.environ.get("REDIS_CONNECTION_STRING", "redis://cache:6379/1"),
|
||||
"OPTIONS": {
|
||||
"CLIENT_CLASS": "django_redis.client.DefaultClient",
|
||||
},
|
||||
|
|
Loading…
Add table
Reference in a new issue