docs: added code blocks without headers (#2560)

This commit is contained in:
Shahed Nasser
2022-11-07 17:36:51 +02:00
committed by GitHub
parent bbf4039147
commit c0639ef708
35 changed files with 336 additions and 98 deletions

View File

@@ -7,7 +7,7 @@ In this document, you will learn how to make a container of Medusa's app on Dock
### Node.js
Medusa supports Node versions 14 and 16. You can check which version of Node you have by running the following command:
```bash
```bash noHeader
node -v
```
@@ -21,18 +21,18 @@ It is assumed that you have Docker installed on your system. You can install it
### 1. Clone Medusa's starter project from GitHub
```bash
```bash noHeader
git clone https://github.com/medusajs/medusa-starter-default.git my-medusa-starter
```
### 2. Change to the newly created project directory
```bash
```bash noHeader
cd my-medusa-starter
```
### 3. Rename the environment variables(.env) file
```bash
```bash noHeader
mv .env.template .env
```
@@ -40,7 +40,7 @@ mv .env.template .env
Make sure the Docker Desktop app is running. Then, run the following command:
```bash
```bash noHeader
docker-compose up --build
```
@@ -48,7 +48,7 @@ docker-compose up --build
If you get the error `ERROR: for postgres Cannot start service postgres: Ports are not available`, change the ports used for PostgreSQL in `docker-compose.yml` to something like this:
```yml
```yml noHeader
postgres:
ports:
- "5433:5433"
@@ -68,7 +68,7 @@ Once done, your server will be accessible at `http://localhost:9000`.
You can test out your server using tools like Postman or by sending a cURL request:
```bash
```bash noHeader
curl -X GET localhost:9000/store/products | python -m json.tool
```
@@ -76,7 +76,7 @@ curl -X GET localhost:9000/store/products | python -m json.tool
This command uses Python to format the result of the request better in your command line. If you don't want to use Python you can simply send a request without the formatting:
```bash
```bash noHeader
curl localhost:9000/store/products
```