Skip to content

Commit 36bd268

Browse files
authored
Update README.md
1 parent 30221b8 commit 36bd268

File tree

1 file changed

+35
-12
lines changed

1 file changed

+35
-12
lines changed

README.md

Lines changed: 35 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -60,33 +60,46 @@ It includes the **OWASP Top 10** and beyond, providing hands-on Application Secu
6060

6161
---
6262

63+
# 🕹️ Demo
64+
65+
6366
# 🪛 Installation
6467

65-
### Using Docker (recommended)
68+
### 1. Using Docker (recommended)
6669

6770
### Clone the repository
6871

69-
```git clone https://github.com/Soham7-dev/AspGoat.git```
72+
```shell
73+
git clone https://github.com/Soham7-dev/AspGoat.git
74+
```
7075

71-
```cd AspGoat```
76+
```shell
77+
cd AspGoat
78+
```
7279

7380
### Build the image
7481

75-
```docker build -t aspgoat .```
82+
```shell
83+
docker build -t aspgoat .
84+
```
7685

7786
### Run the container
7887

79-
```docker run --rm -p 8000:8000 aspgoat```
88+
```shell
89+
docker run --rm -p 8000:8000 aspgoat
90+
```
8091

8192
### Access the app
8293

83-
```http://localhost:8000```
94+
```shell
95+
http://localhost:8000
96+
```
8497

8598

8699
---
87100

88101

89-
### Using .NET SDK
102+
### 2. Using .NET SDK
90103

91104
Download and install the **.NET SDK 8.0 (LTS)** from:
92105
👉 [.NET-Download](https://dotnet.microsoft.com/en-us/download/dotnet/8.0)
@@ -95,21 +108,31 @@ Download and install the **.NET SDK 8.0 (LTS)** from:
95108

96109
### Clone the repository
97110

98-
```git clone https://github.com/Soham7-dev/AspGoat.git```
111+
```shell
112+
git clone https://github.com/Soham7-dev/AspGoat.git
113+
```
99114

100-
```cd AspGoat```
115+
```shell
116+
cd AspGoat
117+
```
101118

102119
### Restore Dependencies
103120

104-
```dotnet restore```
121+
```shell
122+
dotnet restore
123+
```
105124

106125
### Run the app
107126

108-
```dotnet run```
127+
```shell
128+
dotnet run
129+
```
109130

110131
### Access the app
111132

112-
```http://localhost:5073```
133+
```shell
134+
http://localhost:5073
135+
```
113136

114137

115138
---

0 commit comments

Comments
 (0)