BE: Add ELP config for erlang_service

Summary:
Now that we can use an `.elp.toml` file to point to a `build_info.json`, we may as well do it.

FYI, the build info file was generated by temporarily adding the build info plugin, running `elp build-info --json --to build_info.json` and then removing it again.

Reviewed By: perehonchuk

Differential Revision: D54363342

fbshipit-source-id: b1696d9a5cc7165ba5715848f3cc6cfcf09e7026
This commit is contained in:
Alan Zimmerman 2024-02-29 08:59:30 -08:00 committed by Facebook GitHub Bot
parent 3062861df2
commit 71ca29f10c
2 changed files with 22 additions and 0 deletions

1
erlang_service/.elp.toml Normal file
View file

@ -0,0 +1 @@
build_info = "build_info.json"

View file

@ -0,0 +1,21 @@
{
"apps": [
{
"name": "erlang_service",
"dir": "",
"src_dirs": [
"src"
],
"extra_src_dirs": [
"test"
],
"include_dirs": [
"include"
],
"macros": {
"TEST": "true"
}
}
],
"deps": []
}