docs: add missing equal sign for DATABASE_URL in env example (#12620)
The DATABASE_URL variable in the .env file examples was missing an equal sign, preventing it from parsing correctly. This fix ensures the environment variable is properly loaded and available during application runtime.
This commit is contained in:
@@ -203,7 +203,7 @@ AUTH_CORS= # STOREFRONT AND ADMIN URLS, SEPARATED BY COMMAS
|
||||
DISABLE_MEDUSA_ADMIN=false
|
||||
MEDUSA_WORKER_MODE=server
|
||||
PORT=9000
|
||||
DATABASE_URL # POSTGRES DATABASE URL
|
||||
DATABASE_URL= # POSTGRES DATABASE URL
|
||||
REDIS_URL= # REDIS DATABASE URL
|
||||
```
|
||||
|
||||
@@ -285,7 +285,7 @@ JWT_SECRET=supersecret # TODO GENERATE SECURE SECRET
|
||||
DISABLE_MEDUSA_ADMIN=true
|
||||
MEDUSA_WORKER_MODE=worker
|
||||
PORT=9000
|
||||
DATABASE_URL # POSTGRES DATABASE URL
|
||||
DATABASE_URL= # POSTGRES DATABASE URL
|
||||
REDIS_URL= # REDIS DATABASE URL
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user