An open API service indexing awesome lists of open source software.

https://github.com/dnalchemist/area


https://github.com/dnalchemist/area

Last synced: about 1 year ago
JSON representation

Awesome Lists containing this project

README

          

# area

[![Build Status](https://travis-ci.org/DNAlchemist/area.svg?branch=master)](https://travis-ci.org/DNAlchemist/area)

## How to run application

```bash
./gradlew appRun
```

open in browser: http://localhost:8080/area

## How to test

```bash
./gradlew integrationTest
```
Result will be placed in path: "build/reports/tests/integrationTest/index.html"

```bash
./gradlew test
```
Result will be placed in path: "build/reports/tests/test/index.html"

## How to build war

```bash
./gradlew war
```

##REST

```
add person: manage/persons/put?id=${id}
manage/persons/put?id=${id}&x=${x}&y=${y}

remove person: manage/persons/delete?id=${id}
```