docs: remove mentions of SQLite (#4045)

* docs: removed mentions of sqlite

* removed mentions of the seed option

* remove sidebar link

* Made PostgreSQL a required tool

* fixed heading
This commit is contained in:
Shahed Nasser
2023-06-01 14:23:45 +03:00
committed by GitHub
parent 274056a38d
commit c22b4ace0c
16 changed files with 46 additions and 151 deletions

View File

@@ -113,7 +113,7 @@ You can find the format of the PostgreSQL database URL in [PostgreSQLs docume
:::
Then, in `medusa-config.js` in the exported object, comment out or remove the SQLite database configurations and add the PostgreSQL database configurations:
Then, in `medusa-config.js` in the exported object, add the PostgreSQL database configurations:
```jsx title=medusa-config.js
module.exports = {
@@ -121,9 +121,6 @@ module.exports = {
// ...
database_url: DATABASE_URL,
database_type: "postgres",
// REMOVE OR COMMENT OUT THE BELOW:
// database_database: "./medusa-db.sql",
// database_type: "sqlite",
},
}
```