Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
ili16 committed Mar 20, 2024
1 parent 574f59d commit b5693e0
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Kubernetes/modernizer/modernizer-ingress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ spec:
name: modernizer-backend-service
port:
number: 443
- path: /()(generate|get-all-sets|get-instruct)(.*)
- path: /()(generate|get-all-sets|get-instruct|get-similar-code)(.*)
pathType: Prefix
backend:
service:
Expand Down
27 changes: 21 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ A bachelor thesis project to enhance legacy software modernization via LLMs
### Option 3: Packaged VSIX Extension

1. Download the latest release from the [GitHub releases page](https://github.com/rwth-acis/modernizer/releases/tag/v1.2.0)
2. Install it from the command line with `code --install-extension modernizer-1.2.0.vsix`
2. Install it from the command line with:
```shell
code --install-extension modernizer-2.0.0.vsix
```

### Option 4: Compile from Source

Expand All @@ -36,12 +39,24 @@ A bachelor thesis project to enhance legacy software modernization via LLMs

In order to showcase the functionalities a repository is prepared with a few examples. The repository can be found [here](https://github.com/ili16/example-functions.git).

- Clone the repository: `git clone https://github.com/ili16/example-functions.git`
- Change to the repository directory: `cd example-functions`
- Clone the repository:
```shell
git clone https://github.com/ili16/example-functions.git
```
- Change to the repository directory:
```shell
cd example-functions
```
- Open the repository in Visual Studio Code with all extensions disabled except for the modernizer extension:
- Windows: `& code . ($(& code --list-extensions | Where-Object { $_ -ne 'ilijakovacevic.modernizer-vscode' } | ForEach-Object { "--disable-extension" ; $_ }) )`
- Linux: `code . $(code --list-extensions | grep -v 'ilijakovacevic.modernizer-vscode' | sed 's/^/--disable-extension /' | tr '\n' ' ')
`
- Windows:
```shell
& code . ($(& code --list-extensions | Where-Object { $_ -ne 'ilijakovacevic.modernizer-vscode' } | ForEach-Object { "--disable-extension" ; $_ }) )
```
- Linux:
```shell
code . $(code --list-extensions | grep -v 'ilijakovacevic.modernizer-vscode' | sed 's/^/--disable-extension /' | tr '\n' ' ')
```
## Features:
Expand Down

0 comments on commit b5693e0

Please sign in to comment.