Skip to content

Commit e09a04d

Browse files
authored
docs(readme): update readme with console instead of bash (#5970)
1 parent f6187ee commit e09a04d

File tree

1 file changed

+27
-27
lines changed

1 file changed

+27
-27
lines changed

README.md

+27-27
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,9 @@ Prowler App can be installed in different ways, depending on your environment:
9292

9393
**Commands**
9494

95-
``` bash
96-
curl -Lo https://github.com/prowler-cloud/prowler/blob/master/docker-compose.yml \
97-
curl -Lo https://github.com/prowler-cloud/prowler/blob/master/.env \
95+
``` console
96+
curl -Lo https://github.com/prowler-cloud/prowler/blob/master/docker-compose.yml
97+
curl -Lo https://github.com/prowler-cloud/prowler/blob/master/.env
9898
docker compose up -d
9999
```
100100

@@ -111,41 +111,41 @@ docker compose up -d
111111

112112
**Commands to run the API**
113113

114-
``` bash
115-
git clone https://github.com/prowler-cloud/prowler \
116-
cd prowler/api \
117-
poetry install \
118-
poetry shell \
119-
set -a \
120-
source .env \
121-
docker compose up postgres valkey -d \
122-
cd src/backend \
123-
python manage.py migrate --database admin \
114+
``` console
115+
git clone https://github.com/prowler-cloud/prowler
116+
cd prowler/api
117+
poetry install
118+
poetry shell
119+
set -a
120+
source .env
121+
docker compose up postgres valkey -d
122+
cd src/backend
123+
python manage.py migrate --database admin
124124
gunicorn -c config/guniconf.py config.wsgi:application
125125
```
126126

127127
> Now, you can access the API documentation at http://localhost:8080/api/v1/docs.
128128
129129
**Commands to run the API Worker**
130130

131-
``` bash
132-
git clone https://github.com/prowler-cloud/prowler \
133-
cd prowler/api \
134-
poetry install \
135-
poetry shell \
136-
set -a \
137-
source .env \
138-
cd src/backend \
131+
``` console
132+
git clone https://github.com/prowler-cloud/prowler
133+
cd prowler/api
134+
poetry install
135+
poetry shell
136+
set -a
137+
source .env
138+
cd src/backend
139139
python -m celery -A config.celery worker -l info -E
140140
```
141141

142142
**Commands to run the UI**
143143

144-
``` bash
145-
git clone https://github.com/prowler-cloud/prowler \
146-
cd prowler/ui \
147-
npm install \
148-
npm run build \
144+
``` console
145+
git clone https://github.com/prowler-cloud/prowler
146+
cd prowler/ui
147+
npm install
148+
npm run build
149149
npm start
150150
```
151151

@@ -185,7 +185,7 @@ The container images are available here:
185185

186186
Python >= 3.9, < 3.13 is required with pip and poetry:
187187

188-
```
188+
``` console
189189
git clone https://github.com/prowler-cloud/prowler
190190
cd prowler
191191
poetry shell

0 commit comments

Comments
 (0)