Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
9 changed files
with
100 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -1,7 +1,7 @@ | ||
# ioc2rpz change log | ||
[CB] - Changed Behaviour | ||
|
||
## 2019-03-01 v0.9.3.0 | ||
## 2019-03-10 v0.9.3.0 | ||
- REST API | ||
- added rebar3 to manage dependencies | ||
|
||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1 @@ | ||
[{ioc2rpz,[{ipv4,"${IPv4}"},{ipv6,"${IPv6}"},{conf_file,"${CONF}"},{db_dir,"${DB}"},{cd,"${CD}"}]}]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,8 @@ | ||
## Name of the node | ||
#-name {{release_name}}@127.0.0.1 | ||
#-sname {{release_name}} | ||
-sname ${NODE_NAME} | ||
-proto_dist inet_tls | ||
|
||
## Cookie for distributed erlang | ||
#-setcookie {{release_name}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -1,7 +1,21 @@ | ||
{minimum_otp_vsn, "21.0"}. | ||
{erl_opts, [debug_info]}. | ||
{deps, [{cowboy, "2.5.0"}]}. | ||
|
||
{shell, [ | ||
% {config, "config/sys.config"}, | ||
{sys_config_src, "config/sys.config.src"}, | ||
{vm_args_src, "config/vm.args"}, | ||
{apps, [ioc2rpz]} | ||
]}. | ||
|
||
|
||
{relx, [ | ||
{release, {ioc2rpz, {cmd, "grep ioc2rpz_ver include/ioc2rpz.hrl | awk -F'\"' '{printf $2}'"}}, [ioc2rpz]}, | ||
|
||
{dev_mode, true}, | ||
{include_erts, false}, | ||
{sys_config_src, "config/sys.config.src"}, | ||
{vm_args_src, "config/vm.args"}, | ||
|
||
{extended_start_script, true} | ||
]}. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -33,8 +33,10 @@ | ||
{applications, [ | ||
kernel, | ||
stdlib, | ||
inets, | ||
ssl, | ||
sasl, | ||
cowboy | ||
]}, | ||
{mod, { ioc2rpz_app, []}} %, %["","./cfg/ioc2rpz.conf","./db"] | ||
%{env, []} | ||
{mod, { ioc2rpz_app, []}} | ||
]}. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters