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

https://github.com/bredah/fake-social-network

projeto de exemplo para estudos, nenhum dado real é utilizado
https://github.com/bredah/fake-social-network

java java17 junit5 maven restassured spring-mvc

Last synced: 3 months ago
JSON representation

projeto de exemplo para estudos, nenhum dado real é utilizado

Awesome Lists containing this project

README

          

# Social Network

## Command

- Run app

```sh
make start-api
```

## Test

Run single test class

```sh
# Test Class
mvn test -Dtest=ClassName
# Test Method
mvn test -Dtest=ClassName#MethodName
# Test TAG
mvn test -Dgroups=TAG
# Maven Module
mvn test -pl :web
```

> This command defaults to the `dev` profile in Spring Boot

## More details

- [Data Base](./extra/doc/data-base.md)
- [Debug](./extra/doc/debug.md)