Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/v5.7.0 #107

Merged
merged 7 commits into from
Apr 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
node_modules
logs_directory
dist
tsconfig.tsbuildinfo
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ Or, if you have moved <code>config</code> folder out from Nmig's directory:<br /
<br /><b>Note:</b> "logs_directory" will be created during script execution.</p>

<h3>VERSION</h3>
<p>Current version is 5.6.0<br />
<p>Current version is 5.7.0<br />

<h3>LICENSE</h3>
<p>NMIG is available under "GNU GENERAL PUBLIC LICENSE" (v. 3) <br />
Expand Down
12 changes: 7 additions & 5 deletions config/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@
"Connection parameters to your MySQL database",
"Please ensure, that you have defined all parameters properly.",
"Ensure, that details like 'charset' are included (if necessary).",
"Notice, any parameter, acceptable by the node mysql module can be placed here."
"Note, any parameter, acceptable by the node mysql module can be placed here.",
"Check the 'source.host' parameter, that can be either '127.0.0.1' or 'localhost', depends on your setup."
],
"source" : {
"host" : "localhost",
"host" : "127.0.0.1",
"port" : 3306,
"database" : "test_db",
"charset" : "utf8mb4",
Expand All @@ -24,10 +25,11 @@
"Connection parameters to your PostgreSQL database",
"Please ensure, that you have defined all parameters properly.",
"Ensure, that details like 'charset' are included (if necessary).",
"Notice, any parameter, acceptable by the node pg module can be placed here."
"Note, any parameter, acceptable by the node pg module can be placed here.",
"Check the 'target.host' parameter, that can be either '127.0.0.1' or 'localhost', depends on your setup."
],
"target" : {
"host" : "localhost",
"host" : "127.0.0.1",
"port" : 5432,
"database" : "test_db",
"charset" : "UTF8",
Expand All @@ -48,7 +50,7 @@
"Acceptable values:",
"1. 'DEFAULT' - when set to 'DEFAULT', Nmig will run 2 data-loader processes.",
"2. Any positive integer.",
"Notice:",
"Note:",
"1.",
"Usually, migration gets accomplished faster with only 2 data-loader processes,",
"even if more CPU cores are available.",
Expand Down
Loading