]> git.immae.eu Git - github/bastienwirtz/homer.git/blame - dummy-data/README.md
Minor doc fixes (#595)
[github/bastienwirtz/homer.git] / dummy-data / README.md
CommitLineData
0a03fcd9
BW
1# Dummy data
2
cfd31b86 3This directory content makes possible to test custom services cards or create a demo without actually running the service.
0a03fcd9
BW
4The principle is simple: save a sample output of the API used in the service in a static file in this directory. The path must be identical as the service endpoint to be used seamlessly.
5
70f583c3
BW
6## Start the mock server to expose dummy data
7
8```sh
9yarn mock
10```
11
cfd31b86 12## How to add a new services sample
0a03fcd9 13
cfd31b86 14- create a directory for your service, and any sub-folder existing in the service api path.
0a03fcd9
BW
15- save the api output in a file named after the service endpoint.
16
17Example:
cfd31b86
S
18
19```sh
0a03fcd9 20mkdir pihole
05912080 21curl http://my-pihole.me/admin/api.php -o pihole/api.php # /admin is omitted because for PiHole, the implementation expect it to be in the base url (`url` or `endpoint` property)
cfd31b86 22```