From 6b2cc648694a58596dec43fb3e2267518a26f4ad Mon Sep 17 00:00:00 2001 From: brettlangdon Date: Mon, 11 Apr 2016 17:27:41 -0400 Subject: [PATCH] remove unecessary files --- GETTING-STARTED.md | 26 -------------------------- package.json | 43 ------------------------------------------- src/web/index.jsx | 21 --------------------- webpack.config.js | 7 ------- 4 files changed, 97 deletions(-) delete mode 100644 GETTING-STARTED.md delete mode 100644 package.json delete mode 100644 src/web/index.jsx delete mode 100644 webpack.config.js diff --git a/GETTING-STARTED.md b/GETTING-STARTED.md deleted file mode 100644 index dd82c9d..0000000 --- a/GETTING-STARTED.md +++ /dev/null @@ -1,26 +0,0 @@ -Getting started with your new Graylog plugin -============================================ - -Welcome to your new Graylog plugin! - -Please refer to http://docs.graylog.org/en/latest/pages/plugins.html for documentation on how to write -plugins for Graylog. - -Travis CI ---------- - -There is a `.travis.yml` template in this project which is prepared to automatically -deploy the plugin artifacts (JAR, DEB, RPM) to GitHub releases. - -You just have to add your encrypted GitHub access token to the `.travis.yml`. -The token can be generated in your [GitHub personal access token settings](https://github.com/settings/tokens). - -Before Travis CI works, you have to enable it. Install the Travis CI command line -application and execute `travis enable`. - -To encrypt your GitHub access token you can use `travis encrypt`. - -Alternatively you can use `travis setup -f releases` to automatically create a GitHub -access token and add it to the `.travis.yml` file. **Attention:** doing this -will replace some parts of the `.travis.yml` file and you have to restore previous -settings. diff --git a/package.json b/package.json deleted file mode 100644 index d9e5c89..0000000 --- a/package.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "name": "GraylogPluginDatadog", - "version": "1.0.0-SNAPSHOT", - "description": "", - "repository": { - "type": "git", - "url": "https://github.com/underdogio/graylog-plugin-datadog" - }, - "scripts": { - "start": "./node_modules/.bin/webpack-dev-server", - "build": "./node_modules/.bin/webpack" - }, - "keywords": [ - "graylog" - ], - "author": "Brett Langdon ", - "license": "MIT", - "dependencies": { - "history": "^1.17.0", - "react": "0.14.x", - "react-bootstrap": "^0.28.1", - "react-dom": "^0.14.5", - "react-router": "~1.0.0", - "react-router-bootstrap": "^0.19.0", - "reflux": "^0.2.12" - }, - "devDependencies": { - "babel-core": "^5.8.25", - "babel-loader": "^5.3.2", - "css-loader": "^0.23.0", - "file-loader": "^0.8.4", - "graylog-web-plugin": "~0.0.17", - "graylog-web-manifests": "*", - "json-loader": "^0.5.4", - "less": "^2.5.3", - "less-loader": "^2.2.1", - "react-hot-loader": "^1.3.0", - "react-proxy-loader": "^0.3.4", - "style-loader": "^0.13.0", - "url-loader": "^0.5.6", - "webpack": "^1.12.2" - } -} diff --git a/src/web/index.jsx b/src/web/index.jsx deleted file mode 100644 index 1bf813e..0000000 --- a/src/web/index.jsx +++ /dev/null @@ -1,21 +0,0 @@ -import packageJson from '../../package.json'; -import { PluginManifest, PluginStore } from 'graylog-web-plugin/plugin'; - -PluginStore.register(new PluginManifest(packageJson, { - /* This is the place where you define which entities you are providing to the web interface. - Right now you can add routes and navigation elements to it. - - Examples: */ - - // Adding a route to /sample, rendering YourReactComponent when called: - - // routes: [ - // { path: '/sample', component: YourReactComponent }, - // ], - - // Adding an element to the top navigation pointing to /sample named "Sample": - - // navigation: [ - // { path: '/sample', description: 'Sample' }, - // ] -})); diff --git a/webpack.config.js b/webpack.config.js deleted file mode 100644 index f5a8e56..0000000 --- a/webpack.config.js +++ /dev/null @@ -1,7 +0,0 @@ -const PluginWebpackConfig = require('graylog-web-plugin').PluginWebpackConfig; -const loadBuildConfig = require('graylog-web-plugin').loadBuildConfig; -const path = require('path'); - -module.exports = new PluginWebpackConfig('io.underdog.GraylogPluginDatadog', loadBuildConfig(path.resolve(__dirname, './build.config')), { - // Here goes your additional webpack configuration. -});