diff --git a/.gitignore b/.gitignore index ad44e623..564c3e96 100644 --- a/.gitignore +++ b/.gitignore @@ -1,16 +1,5 @@ -# Binaries for programs and plugins -*.exe -*.exe~ -*.dll -*.so -*.dylib - -# Test binary, build with `go test -c` -*.test - -# Output of the go coverage tool, specifically when used with LiteIDE -*.out dist node_modules -.cache \ No newline at end of file +.cache +static \ No newline at end of file diff --git a/main.go b/main.go index a6b9b464..3001ce97 100644 --- a/main.go +++ b/main.go @@ -34,7 +34,7 @@ func init() { } func main() { - box := packr.NewBox("./dist") + box := packr.NewBox("./static") http.HandleFunc("/api/containers.json", listContainers) http.HandleFunc("/api/logs", logs) http.Handle("/", http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) { diff --git a/package.json b/package.json index 21f2bd46..8e2bbb75 100644 --- a/package.json +++ b/package.json @@ -5,9 +5,9 @@ "main": "index.js", "scripts": { "start": "concurrently 'go run main.go' 'npm run watch-assets'", - "watch-assets": "parcel watch assets/index.html", - "build": "parcel build assets/index.html", - "clean": "rm -rf dist" + "watch-assets": "parcel watch assets/index.html -d static", + "build": "parcel build assets/index.html -d static", + "clean": "rm -rf static" }, "repository": { "type": "git", diff --git a/static/index.html b/static/index.html new file mode 100644 index 00000000..78316e0f --- /dev/null +++ b/static/index.html @@ -0,0 +1,13 @@ + + + + + + + + + +
+ + + \ No newline at end of file diff --git a/static/main.1f19ae8e.js b/static/main.1f19ae8e.js new file mode 100644 index 00000000..6dd1e355 --- /dev/null +++ b/static/main.1f19ae8e.js @@ -0,0 +1,11479 @@ +// modules are defined as an array +// [ module function, map of requires ] +// +// map of requires is short require name -> numeric require +// +// anything defined in a previous bundle is accessed via the +// orig method which is the require for previous bundles + +// eslint-disable-next-line no-global-assign +parcelRequire = (function (modules, cache, entry, globalName) { + // Save the require from previous bundle to this closure if any + var previousRequire = typeof parcelRequire === 'function' && parcelRequire; + var nodeRequire = typeof require === 'function' && require; + + function newRequire(name, jumped) { + if (!cache[name]) { + if (!modules[name]) { + // if we cannot find the module within our internal map or + // cache jump to the current global require ie. the last bundle + // that was added to the page. + var currentRequire = typeof parcelRequire === 'function' && parcelRequire; + if (!jumped && currentRequire) { + return currentRequire(name, true); + } + + // If there are other bundles on this page the require from the + // previous one is saved to 'previousRequire'. Repeat this as + // many times as there are bundles until the module is found or + // we exhaust the require chain. + if (previousRequire) { + return previousRequire(name, true); + } + + // Try the node require function if it exists. + if (nodeRequire && typeof name === 'string') { + return nodeRequire(name); + } + + var err = new Error('Cannot find module \'' + name + '\''); + err.code = 'MODULE_NOT_FOUND'; + throw err; + } + + localRequire.resolve = resolve; + localRequire.cache = {}; + + var module = cache[name] = new newRequire.Module(name); + + modules[name][0].call(module.exports, localRequire, module, module.exports, this); + } + + return cache[name].exports; + + function localRequire(x){ + return newRequire(localRequire.resolve(x)); + } + + function resolve(x){ + return modules[name][1][x] || x; + } + } + + function Module(moduleName) { + this.id = moduleName; + this.bundle = newRequire; + this.exports = {}; + } + + newRequire.isParcelRequire = true; + newRequire.Module = Module; + newRequire.modules = modules; + newRequire.cache = cache; + newRequire.parent = previousRequire; + newRequire.register = function (id, exports) { + modules[id] = [function (require, module) { + module.exports = exports; + }, {}]; + }; + + for (var i = 0; i < entry.length; i++) { + newRequire(entry[i]); + } + + if (entry.length) { + // Expose entry point to Node, AMD or browser globals + // Based on https://github.com/ForbesLindesay/umd/blob/master/template.js + var mainExports = newRequire(entry[entry.length - 1]); + + // CommonJS + if (typeof exports === "object" && typeof module !== "undefined") { + module.exports = mainExports; + + // RequireJS + } else if (typeof define === "function" && define.amd) { + define(function () { + return mainExports; + }); + + // \n\n","\n\n\n\n","\n\n\n","import Vue from \"vue\";\nimport VueRouter from \"vue-router\";\nVue.use(VueRouter);\n\nimport App from \"./App.vue\";\nimport Index from \"./pages/Index.vue\";\nimport Container from \"./pages/Container.vue\";\n\nconst routes = [\n { path: \"/\", component: Index },\n {\n path: \"/container/:id\",\n component: Container,\n name: \"container\",\n props: true\n }\n];\n\nconst router = new VueRouter({\n mode: \"history\",\n routes\n});\n\nnew Vue({\n router,\n render: h => h(App)\n}).$mount(\"#app\");\n"]} \ No newline at end of file