-
Notifications
You must be signed in to change notification settings - Fork 792
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cc: deploy "develop" environment by default
- Loading branch information
1 parent
52f80e8
commit 737d1bb
Showing
6 changed files
with
6 additions
and
10 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
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
4 changes: 2 additions & 2 deletions
4
monkey/monkey_island/cc/environment/server_config_generator.py
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
from pathlib import Path | ||
|
||
from monkey_island.cc.consts import DEFAULT_STANDARD_SERVER_CONFIG_PATH | ||
from monkey_island.cc.consts import DEFAULT_DEVELOP_SERVER_CONFIG_PATH | ||
|
||
|
||
def create_default_config_file(path): | ||
default_config = Path(DEFAULT_STANDARD_SERVER_CONFIG_PATH).read_text() | ||
default_config = Path(DEFAULT_DEVELOP_SERVER_CONFIG_PATH).read_text() | ||
Path(path).write_text(default_config) |
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
File renamed without changes.
This file was deleted.
Oops, something went wrong.