diff --git a/src/config.js b/src/config.js new file mode 100644 index 0000000000000000000000000000000000000000..1df93d8bf6e1a52d42c0bfc207cd3ff95d899a13 --- /dev/null +++ b/src/config.js @@ -0,0 +1,16 @@ +/** + * Project config file. + */ + + +var config = { + mysql: { + user: 'root', + password: 'root', + database: 'js_test', + host: '127.0.0.1', + port: '3306' + } +} + +export default config; diff --git a/scripts/database_export.sql b/src/database_export.sql similarity index 100% rename from scripts/database_export.sql rename to src/database_export.sql