Skip to content

Commit

Permalink
update dev guide
Browse files Browse the repository at this point in the history
  • Loading branch information
skhatri committed Apr 4, 2020
1 parent 72b72e7 commit b73d0ff
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 2 deletions.
29 changes: 27 additions & 2 deletions DEV.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,36 @@

### Insecure SSL for localhost
### Importing App
```
./gradlew cleanIdea idea
```

Enable this flag when enabling SSL and HTTP/2
### Build App
```
gradle clean build
```

### Running App
1. Run Application.kt from IDE
2. Run using command line \
```gradle runApp```
3. Run as fat jar

```
gradle clean build
java -jar app/build/libs/app.jar
```

### Accessing App
```
open http://localhost:8080/todo/search
```

#### Enable this flag when enabling SSL and HTTP/2
```
chrome://flags/#allow-insecure-localhost
```


### Performance test

Run the app with one of the web servers
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ Microservices Starter Project
[![Code Coverage](https://img.shields.io/codecov/c/github/skhatri/microservices-starter-kotlin/master.svg)](https://codecov.io/github/skhatri/microservices-starter-kotlin?branch=master)
[![Known Vulnerabilities](https://snyk.io/test/github/skhatri/microservices-starter-kotlin/badge.svg?targetFile=build.gradle.kts)](https://snyk.io/test/github/skhatri/microservices-starter-kotlin?targetFile=build.gradle.kts)

### Development
[Developer Guide](DEV.md)

### logging
log4j2
Expand Down

0 comments on commit b73d0ff

Please sign in to comment.