One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
BOOT_VERSION=2.7.1 |
# | |
# Module manifest for module 'module' | |
# | |
# Generated by: | |
# | |
# Generated on: | |
# | |
@{ |
FROM degree9/heroku-boot-clj:latest | |
ENV BOOT_VERSION=2.4.2 | |
# install node | |
RUN curl --silent --location https://deb.nodesource.com/setup_0.12 | bash - \ | |
&& apt-get install -y nodejs | |
# install bower | |
RUN npm install --global bower |
matt-mbpr:theLounge matt$ boot dev-osx | |
Bower run successful... | |
Starting file watcher (CTRL-C to quit)... | |
Checking out boot-semver-0.6.0.jar... | |
Checking out lounge.setup-0.1.0.jar... | |
Checking out lounge.ui-0.1.0.jar... | |
Checking out lounge.boot-0.1.0.jar... | |
Checking out lounge.toolbar-0.1.0.jar... |
[ | |
[:app :lt.objs.style/set-skin "dark"] | |
[:app :lt.objs.plugins/load-js "user_compiled.js"] | |
[:editor :lt.objs.editor/no-wrap] | |
[:editor :lt.objs.style/set-theme "default"] | |
[:editor.clojure :lt.plugins.clojure/print-length 1000] | |
[:user.hello :lt.plugins.user/on-close-destroy] |
#cloud-config | |
ssh_authorized_keys: | |
- ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCkxGvQWuyteYw9DzH8JPJEsknXlSGEeLlbuaUnh1LLxrhEG0OJE+Vm535HCN5/g+RsxewqFh6iFYnU97D0iZz2PBnh6EZLV7ashNc5iXNgU5IaP7zNjRjTM8ZGJmdDBF2TYeCQzy99jRxLO3fbyYB1EzOtN7LMgXCpH36Wu/98Ej0cVbn8WljNTHRYdgFQ7AcCyUm7J5WO+K07fqj+xl7GJunyIlCiKztC5UZtinaGdzeo6c2Zz4nzgqAwgzHqbf3Q9jhcEEwwXXUvlgyyTsfBcl3qyBA5fLEhbimse1n3lKuCwCVCVjirtds5YcN3rROB8aQqo+cwIYvnD7BDEXUz [email protected] |
(ns degree9.boot-d9micromgmt.impl | |
{:boot/export-tasks true} | |
(:require [boot.core :as boot] | |
[boot.pod :as pod] | |
[boot.tmpdir :as tmpd] | |
[boot.util :as util] | |
[boot.task.built-in :as tasks] | |
[clj-yaml.core :as yaml] | |
[clojure.string :as string] | |
[clojure.java.io :as io] |
#requires -version 3.0 | |
#requires -module Hyper-V | |
<# | |
.SYNOPSIS | |
Export virtual machines | |
.DESCRIPTION | |
This utility will export virtual machines to a target destination. By default | |
it will create a folder using the format: |
Configuration d9micromgmt { | |
Import-DscResource -ModuleName xPSDesiredStateConfiguration | |
Node localhost { | |
WindowsFeature DSCServiceFeature { | |
Name = "DSC-Service" | |
Ensure = "Present" |