Creazione organizza
[YouAndWeb_TwoToc] / .fr-KzWVa7 / twotoc / server / config / environment / development.js
diff --git a/.fr-KzWVa7/twotoc/server/config/environment/development.js b/.fr-KzWVa7/twotoc/server/config/environment/development.js
new file mode 100755 (executable)
index 0000000..8ae9f93
--- /dev/null
@@ -0,0 +1,22 @@
+'use strict';
+
+// Development specific configuration
+// ==================================
+module.exports = {
+  // MongoDB connection options
+  mongo: {
+    uri: 'mongodb://localhost/twotoc-dev'
+  },
+  sequelize: {
+    uri: 'sqlite://',
+    options: {
+      logging: false,
+      storage: 'dev.sqlite',
+      define: {
+        timestamps: false
+      }
+    }
+  },
+
+  seedDB: true
+};