forked from p34709852/monkey
build_scripts: Extract deployment field from server configs to separate files for appimage and docker
This commit is contained in:
parent
dec2fc43c2
commit
c46c02507f
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"deployment": "standard"
|
||||||
|
}
|
|
@ -2,8 +2,7 @@
|
||||||
"data_dir": "~/.monkey_island",
|
"data_dir": "~/.monkey_island",
|
||||||
"log_level": "DEBUG",
|
"log_level": "DEBUG",
|
||||||
"environment": {
|
"environment": {
|
||||||
"server_config": "password",
|
"server_config": "password"
|
||||||
"deployment": "standard"
|
|
||||||
},
|
},
|
||||||
"mongodb": {
|
"mongodb": {
|
||||||
"start_mongodb": true
|
"start_mongodb": true
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
{
|
||||||
|
"deployment": "docker"
|
||||||
|
}
|
|
@ -2,8 +2,7 @@
|
||||||
"data_dir": "/monkey_island_data",
|
"data_dir": "/monkey_island_data",
|
||||||
"log_level": "DEBUG",
|
"log_level": "DEBUG",
|
||||||
"environment": {
|
"environment": {
|
||||||
"server_config": "password",
|
"server_config": "password"
|
||||||
"deployment": "docker"
|
|
||||||
},
|
},
|
||||||
"mongodb": {
|
"mongodb": {
|
||||||
"start_mongodb": false
|
"start_mongodb": false
|
||||||
|
|
Loading…
Reference in New Issue