Skip to content
This repository has been archived by the owner on Mar 20, 2023. It is now read-only.

Commit

Permalink
Updating deployment script
Browse files Browse the repository at this point in the history
  • Loading branch information
David Sanchez committed Dec 4, 2018
1 parent b6ed548 commit 8a74f73
Show file tree
Hide file tree
Showing 14 changed files with 68 additions and 147 deletions.
60 changes: 0 additions & 60 deletions Deploy/01-create-storage.sh

This file was deleted.

2 changes: 1 addition & 1 deletion Deploy/02-copy-images.sh → Deploy/copy-images.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
couponsRg=${TT_COUPONS_RG}
couponsRegion=${TT_COUPONS_REGION}
name=${TT_STORAGE_NAME}
sourcepath="./images"
sourcepath="../Documents/Images"

function validate {
valid=1
Expand Down
32 changes: 32 additions & 0 deletions Deploy/deployment.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"parameters": { },
"variables": {
"storage_name": "[concat('ttstorage',uniqueString(resourceGroup().id))]"
},
"resources": [
{
"name": "[variables('storage_name')]",
"type": "Microsoft.Storage/storageAccounts",
"apiVersion": "2018-07-01",
"location": "[resourceGroup().location]",
"properties": {
"accessTier": "Hot",
"supportsHttpsTrafficOnly": false
},
"dependsOn": [],
"sku": {
"name": "Standard_LRS"
},
"kind": "StorageV2"
}
],
"outputs": {
"storage": {
"type": "string",
"value": "[variables('storage_name')]"

}
}
}
21 changes: 0 additions & 21 deletions Deploy/storage-parameters.json

This file was deleted.

44 changes: 0 additions & 44 deletions Deploy/storage-template.json

This file was deleted.

File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Binary file added Documents/Images/Desktop.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Documents/Images/deploy-to-azure.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
54 changes: 34 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,34 @@
# Introduction
TODO: Give a short introduction of your project. Let this section explain the objectives or the motivation behind this project.

# Getting Started
TODO: Guide users through getting your code up and running on their own system. In this section you can talk about:
1. Installation process
2. Software dependencies
3. Latest releases
4. API references

# Build and Test
TODO: Describe and show how to build your code and run the tests.

# Contribute
TODO: Explain how other users and developers can contribute to make your code better.

If you want to learn more about creating good readme files then refer the following [guidelines](https://www.visualstudio.com/en-us/docs/git/create-a-readme). You can also seek inspiration from the below readme files:
- [ASP.NET Core](https://github.com/aspnet/Home)
- [Visual Studio Code](https://github.com/Microsoft/vscode)
- [Chakra Core](https://github.com/Microsoft/ChakraCore)
# Tailwind Traders Desktop Reference App

<img src="/Documents/Images/Desktop.png" alt="Tailwind Traders Desktop"/>

# Deploy to Azure

We have added an ARM template so you can automate the creation of the resources for this app.

<a href="https://portal.azure.com/#create/Microsoft.Template/uri/https%3A%2F%2Fraw.githubusercontent.com%2FMicrosoft%2FTailwindTraders-Desktop%2Fmaster%2FDeploy%2Fdeployment.json"><img src="/Documents/Images/deploy-to-azure.png" alt="Deploy to Azure"/></a>

# Repositories

For this demo reference, we built several consumer and line-of-business applications and a set of backend services. You can find all repositories in the following locations:

* [Tailwind Traders](https://github.com/Microsoft/TailwindTraders)
* [Backend (AKS)](https://github.com/Microsoft/TailwindTraders-Backend)
* [Website (ASP.NET & React)](https://github.com/Microsoft/TailwindTraders-Website)
* [Desktop (WinForms & WPF -.NET Core)](https://github.com/Microsoft/TailwindTraders-Desktop)
* [Rewards (ASP.NET Framework)](https://github.com/Microsoft/TailwindTraders-Rewards)
* [Mobile (Xamarin Forms 4.0)](https://github.com/Microsoft/TailwindTraders-Mobile)

# Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
the rights to use your contribution. For details, visit https://cla.microsoft.com.

When you submit a pull request, a CLA-bot will automatically determine whether you need to provide
a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions
provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
2 changes: 1 addition & 1 deletion Source/CouponReader.Core.Forms/App.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<connectionStrings>
<add name="TailConnectionString" connectionString="***REMOVED***" providerName="System.Data.SqlClient" />
<add name="TailConnectionString" connectionString="" providerName="System.Data.SqlClient" />
</connectionStrings>
</configuration>

0 comments on commit 8a74f73

Please sign in to comment.