diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 000000000..3c3629e64 --- /dev/null +++ b/.dockerignore @@ -0,0 +1 @@ +node_modules diff --git a/.gitignore b/.gitignore index 4a54b4a3d..8eaa7270a 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,5 @@ logs/* !.gitkeep dockerui *.esproj/* +node_modules +dist diff --git a/Dockerfile b/Dockerfile index dcdfcf2c0..31b680be2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,7 @@ FROM crosbymichael/golang -ADD . /app/ +COPY dockerui.go /app/ +COPY dist/ /app/ WORKDIR /app/ RUN go build dockerui.go EXPOSE 9000 diff --git a/Makefile b/Makefile index 69b7d36f5..0676b2ae3 100644 --- a/Makefile +++ b/Makefile @@ -6,6 +6,7 @@ OPEN = $(shell which xdg-open || which open) PORT ?= 9000 build: + grunt build docker build --rm -t dockerui . run: diff --git a/app/app.js b/app/app.js index 48fcc4075..c9c22ffd7 100644 --- a/app/app.js +++ b/app/app.js @@ -1,6 +1,6 @@ 'use strict'; -angular.module('dockerui', ['ngRoute', 'dockerui.services', 'dockerui.filters', 'masthead', 'footer', 'dashboard', 'container', 'containers', 'images', 'image', 'startContainer', 'sidebar', 'settings', 'builder']) +angular.module('<%= pkg.name %>', ['<%= pkg.name %>.templates', 'ngRoute', '<%= pkg.name %>.services', '<%= pkg.name %>.filters', 'masthead', 'footer', 'dashboard', 'container', 'containers', 'images', 'image', 'startContainer', 'sidebar', 'settings', 'builder']) .config(['$routeProvider', function ($routeProvider) { $routeProvider.when('/', {templateUrl: 'app/components/dashboard/dashboard.html', controller: 'DashboardController'}); $routeProvider.when('/containers/', {templateUrl: 'app/components/containers/containers.html', controller: 'ContainersController'}); @@ -14,5 +14,5 @@ angular.module('dockerui', ['ngRoute', 'dockerui.services', 'dockerui.filters', // You need to set this to the api endpoint without the port i.e. http://192.168.1.9 .constant('DOCKER_ENDPOINT', '/dockerapi') .constant('DOCKER_PORT', '') // Docker port, leave as an empty string if no port is requred. If you have a port, prefix it with a ':' i.e. :4243 - .constant('UI_VERSION', 'v0.5') + .constant('UI_VERSION', 'v<%= pkg.version %>') .constant('DOCKER_API_VERSION', 'v1.15'); diff --git a/gruntFile.js b/gruntFile.js new file mode 100644 index 000000000..398794ec8 --- /dev/null +++ b/gruntFile.js @@ -0,0 +1,151 @@ +module.exports = function (grunt) { + + grunt.loadNpmTasks('grunt-contrib-concat'); + grunt.loadNpmTasks('grunt-contrib-jshint'); + grunt.loadNpmTasks('grunt-contrib-uglify'); + grunt.loadNpmTasks('grunt-contrib-clean'); + grunt.loadNpmTasks('grunt-contrib-copy'); + grunt.loadNpmTasks('grunt-contrib-watch'); + grunt.loadNpmTasks('grunt-recess'); + grunt.loadNpmTasks('grunt-karma'); + grunt.loadNpmTasks('grunt-html2js'); + + // Default task. + grunt.registerTask('default', ['jshint','build','karma:unit']); + grunt.registerTask('build', ['clean','html2js','concat','recess:build', 'copy']); + grunt.registerTask('release', ['clean','html2js','uglify','jshint','karma:unit','concat:index', 'recess:min', 'copy']); + grunt.registerTask('test-watch', ['karma:watch']); + + // Print a timestamp (useful for when watching) + grunt.registerTask('timestamp', function() { + grunt.log.subhead(Date()); + }); + + var karmaConfig = function(configFile, customOptions) { + var options = { configFile: configFile, keepalive: true }; + var travisOptions = process.env.TRAVIS && { browsers: ['Firefox'], reporters: 'dots' }; + return grunt.util._.extend(options, customOptions, travisOptions); + }; + + // Project configuration. + grunt.initConfig({ + distdir: 'dist', + pkg: grunt.file.readJSON('package.json'), + banner: + '/*! <%= pkg.title || pkg.name %> - v<%= pkg.version %> - <%= grunt.template.today("yyyy-mm-dd") %>\n' + + '<%= pkg.homepage ? " * " + pkg.homepage + "\\n" : "" %>' + + ' * Copyright (c) <%= grunt.template.today("yyyy") %> <%= pkg.author %>;\n' + + ' * Licensed <%= _.pluck(pkg.licenses, "type").join(", ") %>\n */\n', + src: { + js: ['app/**/*.js'], + jsTpl: ['<%= distdir %>/templates/**/*.js'], + specs: ['test/**/*.spec.js'], + scenarios: ['test/**/*.scenario.js'], + html: ['index.html'], + tpl: { + app: ['app/components/**/*.html'] + }, + css: ['assets/css/app.css'] + }, + clean: ['<%= distdir %>/*'], + copy: { + assets: { + files: [{ dest: '<%= distdir %>/assets', src : '**', expand: true, cwd: 'assets/' }] + } + }, + karma: { + unit: { options: karmaConfig('test/config/unit.js') }, + watch: { options: karmaConfig('test/config/unit.js', { singleRun:false, autoWatch: true}) } + }, + html2js: { + app: { + options: { + base: '.' + }, + src: ['<%= src.tpl.app %>'], + dest: '<%= distdir %>/templates/app.js', + module: '<%= pkg.name %>.templates' + } + }, + concat:{ + dist:{ + options: { + banner: "<%= banner %>", + process: true + }, + src:['<%= src.js %>', '<%= src.jsTpl %>'], + dest:'<%= distdir %>/<%= pkg.name %>.js' + }, + index: { + src: ['index.html'], + dest: '<%= distdir %>/index.html', + options: { + process: true + } + }, + angular: { + src:['assets/js/angularjs/1.2.6/angular.min.js', + 'assets/js/angularjs/1.2.6/angular-route.min.js', + 'assets/js/angularjs/1.2.6/angular-resource.min.js'], + dest: '<%= distdir %>/angular.js' + } + }, + uglify: { + dist:{ + options: { + banner: "<%= banner %>" + }, + src:['<%= src.js %>' ,'<%= src.jsTpl %>'], + dest:'<%= distdir %>/<%= pkg.name %>.js' + }, + angular: { + src:['<%= concat.angular.src %>'], + dest: '<%= distdir %>/angular.js' + } + }, + recess: { + build: { + files: { + '<%= distdir %>/<%= pkg.name %>.css': + ['<%= src.css %>'] }, + options: { + compile: true, + noOverqualifying: false // TODO: Added because of .nav class, rename + } + }, + min: { + files: { + '<%= distdir %>/<%= pkg.name %>.css': ['<%= src.css %>'] + }, + options: { + compress: true + } + } + }, + watch:{ + all: { + files:['<%= src.js %>', '<%= src.specs %>', '<%= src.css %>', '<%= src.tpl.app %>', '<%= src.tpl.common %>', '<%= src.html %>'], + tasks:['default','timestamp'] + }, + build: { + files:['<%= src.js %>', '<%= src.specs %>', '<%= src.css %>', '<%= src.tpl.app %>', '<%= src.tpl.common %>', '<%= src.html %>'], + tasks:['build','timestamp'] + } + }, + jshint:{ + files:['gruntFile.js', '<%= src.js %>', '<%= src.jsTpl %>', '<%= src.specs %>', '<%= src.scenarios %>'], + options:{ + curly:true, + eqeqeq:true, + immed:true, + latedef:true, + newcap:true, + noarg:true, + sub:true, + boss:true, + eqnull:true, + globals:{} + } + } + }); +}; diff --git a/index.html b/index.html index 6307d2771..fb79d52d4 100644 --- a/index.html +++ b/index.html @@ -5,12 +5,13 @@