docs: removed info admonitions from set up dev environment documentation (#2363)

* docs: fixed isue#2285 and removed info admonition

* removed the blocks after info admonitions

* docs: fixed isue#2285 and removed info admonition
This commit is contained in:
Appledora
2022-10-06 14:50:37 +06:00
committed by GitHub
parent c105c046c2
commit 294063ec9e

View File

@@ -12,14 +12,6 @@ To get your development environment ready you need to install the following tool
### Node.js
:::info
Node.js is an environment that can execute JavaScript code outside of the browser, making it possible to run on a server.
Node.js has a bundled package manager called NPM. NPM helps you install "packages" which are small pieces of code that you can leverage in your Node.js applications. Medusa's core is itself a package distributed via NPM and so are all of the plugins that exist around the core.
:::
Node.js is the environment that makes it possible for Medusa to run, so you must install Node.js on your computer to start Medusa development.
:::caution
@@ -86,12 +78,6 @@ Make sure that you have Xcode command line tools installed; if not, run the fol
### Git
:::info
Git is a version control system that keeps track of files within a project and makes it possible to do things like going back in history if you have made mistakes or collaborate with teammates without overriding each other's work.
:::
Medusa uses Git behind the scenes when you create a new project so you'll have to install it on your computer to get started.
<Tabs groupId="operating-systems" wrapperClassName={styles.osTabs}>
@@ -148,12 +134,6 @@ These tools are not required to have to run a Medusa server, but it's highly rec
### PostgreSQL
:::info
PostgreSQL is an open-source relational database system with more than thirty years of active development. It is robust, reliable, and ensures data integrity so there's no need to worry about those when you scale your project.
:::
Although you can use an SQLite database with Medusa which would require no necessary database installations, it is recommended to use a PostgreSQL database for your server.
:::tip
@@ -208,12 +188,6 @@ Where:
### Redis
:::info
Redis is an open-source in-memory data structure store. It can be used for distributing and emitting messages and caching, among other purposes.
:::
Medusa uses Redis as the event queue in the server. If you want to use subscribers to handle events such as when an order is placed and perform actions based on the events, then you need to install and configure Redis.
If you dont install and configure Redis with your Medusa server, then it will work without any events-related features.