This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Input from Octopus | |
## $AzureModules "C:\Program Files (x86)\Microsoft SDKs\Azure\PowerShell\ServiceManagement\Azure\Azure.psd1" | |
## $PublishSettingsLocation "pathto\credentials.publishsettings" | |
## $SubscriptionIdentifier | |
## $DeploymentStorageAccount | |
## $DeploymentStorageKey | |
## $ConfigPath | |
## $CloudServiceName | |
## Get Powershell modules |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<PublicConfig xmlns="http://schemas.microsoft.com/ServiceHosting/2010/10/DiagnosticsConfiguration"> | |
<WadCfg> | |
<DiagnosticMonitorConfiguration overallQuotaInMB="4096"> | |
<DiagnosticInfrastructureLogs scheduledTransferLogLevelFilter="Verbose" /> | |
<Directories scheduledTransferPeriod="PT1M"> | |
<IISLogs containerName="wad-iis-logfiles" /> | |
<FailedRequestLogs containerName="wad-failedrequestlogs" /> | |
</Directories> | |
<PerformanceCounters scheduledTransferPeriod="PT1M"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Delete-ScheduleTask([string] $taskName) | |
{ | |
Write-Host "Delete schedule task for $taskName" | |
Unregister-ScheduledTask -TaskName $taskName -Confirm:$false | |
} | |
function Create-ScheduleTask([string] $taskName, [string] $startTime, [Int] $interval) | |
{ | |
Write-Host "Create schedule task for $taskName" | |
$action = New-ScheduledTaskAction -Execute "C:\OctopusApps\app.exe" -Argument $taskName |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<system.diagnostics> | |
<trace autoflush="true" indentsize="4"> | |
<listeners> | |
<add name="fileLog" type="System.Diagnostics.TextWriterTraceListener" initializeData="application.log" /> | |
<add name="consoleLog" type="System.Diagnostics.ConsoleTraceListener" /> | |
<add name="eventLog" type="System.Diagnostics.EventLogTraceListener" initializeData="TraceLog" /> | |
</listeners> | |
</trace> | |
</system.diagnostics> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link href='http://fonts.googleapis.com/css?family=Lobster' rel='stylesheet' type='text/css'> | |
<h2 style='font-family:Lobster;'>Lobster</h2> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
npm install npm@latest -g | |
rm -rf * && echo "export NODE_PATH=$NODE_PATH:/home/ubuntu/.nvm/v0.10.35/lib/node_modules" >> ~/.bashrc && source ~/.bashrc && npm install -g yo grunt grunt-cli generator-angular-fullstack && yo angular-fullstack |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- contentLib: | |
featureToggle: MODELS_IN_REPO | |
title: Find Models and Points of Interest within Files | |
description: '"Models" and "Points of Interest" folders have been created in the Public folder to help you organize existing files. You can rename, move, and change share settings like other files.' | |
- second: | |
title: Smart Predict | |
description: From Smart Predict, you can now publish a predictive model to Predictive Analytics Integrator (PAi) as a new predictive scenario. This facilitates the creation of predictive scenarios in PAi. | |
- third: | |
requiredRole: ADMIN | |
title: Stories |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from "react"; | |
const users = { | |
1: { | |
id: 1, | |
name: "Jane Cruz", | |
userName: "coder" | |
}, | |
2: { | |
id: 2, | |
name: "Matthew Johnson", |
OlderNewer