Skip to content

Commit

Permalink
getting ready for v1 release of Challenger
Browse files Browse the repository at this point in the history
  • Loading branch information
eviltester committed Jul 27, 2020
1 parent 6be5e7c commit 08f41cc
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 4 deletions.
2 changes: 1 addition & 1 deletion challenger/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<modelVersion>4.0.0</modelVersion>

<artifactId>challenger</artifactId>
<version>0.1</version>
<version>1.0</version>

<dependencies>
<dependency>
Expand Down
31 changes: 30 additions & 1 deletion challenger/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,42 @@ If you visit the URL in a browser then you will see the GUI where you can:
- browse the items in the application
- see the API Challenges

You can run it in multi-user mode locally by using the command line parameter:

`-multiplayer`

e.g.

- `java -jar apichallenges.jar -multiplayer`

This could be useful for team workshops and learning sessions.

## More information

More information can be found at [eviltester.com/apichallenges](https://eviltester.com/apichallenges)

## Challenges

The challenges can be completed by issuing API requests to the API.

e.g. `GET http://localhost:4567/todos` would complete the challenge to "GET the list of todos"

You can also `GET http://localhost:4567/challenges` to get the list of challenges and their status as an API call.
You can also `GET http://localhost:4567/challenges` to get the list of challenges and their status as an API call.

## Version Tracking

v1.0 - 20200727

- ready for initial public release
- fix bug to allow tracking of x-challenger session as a challenge

v0.1

- initial development of challenges
- s3 storage of multi-user cloud challenge sessions
- file persistence for local release

## How Tos



4 changes: 2 additions & 2 deletions challengerAuto/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<artifactId>challengerAuto</artifactId>

<version>0.1</version>
<version>1.0</version>

<properties>
<junit.jupiter.version>5.6.2</junit.jupiter.version>
Expand All @@ -24,7 +24,7 @@
<dependency>
<groupId>uk.co.compendiumdev.thingifier</groupId>
<artifactId>challenger</artifactId>
<version>0.1</version>
<version>1.0</version>
<scope>test</scope>
</dependency>

Expand Down

0 comments on commit 08f41cc

Please sign in to comment.