소스 검색

chore: Disable redis by default

olivermrbl 2 년 전
부모
커밋
2262dfa4f7
1개의 변경된 파일2개의 추가작업 그리고 4개의 파일을 삭제
  1. 2 4
      medusa-config.js

+ 2 - 4
medusa-config.js

@@ -68,10 +68,8 @@ const projectConfig = {
   database_type: DATABASE_TYPE,
   store_cors: STORE_CORS,
   admin_cors: ADMIN_CORS,
-}
-
-if (REDIS_URL) {
-  projectConfig.redis_url = REDIS_URL;
+  // Uncomment the following lines to enable REDIS
+  // redis_url = REDIS_URL
 }
 
 if (DATABASE_URL && DATABASE_TYPE === "postgres") {