Преглед изворни кода

Changed name off config.js to config.sample.js to make it easier to upgrade with having to worry about config being overwwritten, if there is no config.js file config.sample.js will be read instead (requirejs fallback). Closes #65

Torkel Ödegaard пре 12 година
родитељ
комит
f2f435b4cb
4 измењених фајлова са 3 додато и 3 уклоњено
  1. 1 1
      .gitignore
  2. 1 1
      package.json
  3. 1 1
      src/app/components/require.config.js
  4. 0 0
      src/config.sample.js

+ 1 - 1
.gitignore

@@ -2,5 +2,5 @@ node_modules
 .aws-config.json
 .aws-config.json
 dist
 dist
 web.config
 web.config
-config.dev.js
+config.js
 *.sublime-workspace
 *.sublime-workspace

+ 1 - 1
package.json

@@ -4,7 +4,7 @@
     "company": "Coding Instinct AB"
     "company": "Coding Instinct AB"
   },
   },
   "name": "grafana",
   "name": "grafana",
-  "version": "1.0.4",
+  "version": "1.1.0",
   "repository": {
   "repository": {
     "type": "git",
     "type": "git",
     "url": "http://github.com/torkelo/grafana.git"
     "url": "http://github.com/torkelo/grafana.git"

+ 1 - 1
src/app/components/require.config.js

@@ -5,7 +5,7 @@ require.config({
   baseUrl: 'app',
   baseUrl: 'app',
   // urlArgs: 'r=@REV@',
   // urlArgs: 'r=@REV@',
   paths: {
   paths: {
-    config:                   '../config',
+    config:                   ['../config', '../config.sample'],
     settings:                 'components/settings',
     settings:                 'components/settings',
     kbn:                      'components/kbn',
     kbn:                      'components/kbn',
 
 

+ 0 - 0
src/config.js → src/config.sample.js