diff --git a/.gitignore b/.gitignore index 6baa095..0306177 100644 --- a/.gitignore +++ b/.gitignore @@ -3,9 +3,10 @@ ._* node_modules core* +config/development.json dist webpack_stats.html data/* yarn-error.log yarn.lock - +tmp diff --git a/config/default.json b/config/default.json new file mode 100644 index 0000000..1cfccb1 --- /dev/null +++ b/config/default.json @@ -0,0 +1,10 @@ +{ + "database": { + "engine": "mysql", + "host": "db", + "name": "npm", + "user": "npm", + "password": "npm", + "port": 3306 + } +} diff --git a/config/my.cnf b/config/my.cnf new file mode 100644 index 0000000..497b6fb --- /dev/null +++ b/config/my.cnf @@ -0,0 +1,8 @@ +[mysqld] +skip-innodb +default-storage-engine=MyISAM +default-tmp-storage-engine=MyISAM +innodb=OFF +symbolic-links=0 +log-output=file +