Jamie Curnow 7 lat temu
rodzic
commit
9e919c3c24
3 zmienionych plików z 20 dodań i 1 usunięć
  1. 2 1
      .gitignore
  2. 10 0
      config/default.json
  3. 8 0
      config/my.cnf

+ 2 - 1
.gitignore

@@ -3,9 +3,10 @@
 ._*
 node_modules
 core*
+config/development.json
 dist
 webpack_stats.html
 data/*
 yarn-error.log
 yarn.lock
-
+tmp

+ 10 - 0
config/default.json

@@ -0,0 +1,10 @@
+{
+    "database": {
+        "engine": "mysql",
+        "host": "db",
+        "name": "npm",
+        "user": "npm",
+        "password": "npm",
+        "port": 3306
+    }
+}

+ 8 - 0
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
+