Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #5

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Java Spring Vulny is a simple application that combines the power and sophistica
## Building and Running in IDE/commandline
```shell script
# run the postgresql db so you can have SQLi
docker-compose up -d db
docker compose up -d db
# run the application in debug mode or run mode with the vm option to activate the profile
# -Dspring.profiles.active=postgresql

Expand All @@ -16,12 +16,12 @@ docker-compose up -d db

### Build
```shell script
docker-compose build
docker compose build
```

### Run docker
```shell script
docker-compose up -d
docker compose up -d
```

## Building and Running Without Docker
Expand Down Expand Up @@ -69,7 +69,7 @@ Once the app starts up, you can reach it at [https://localhost:9000](https://loc
You can log in to the application with the following credentials:

```
username: janesmith
username: user
password: password
```

Expand Down
Loading