From 6dad5ce8db555634d04c938f45f41c4ab5451e0f Mon Sep 17 00:00:00 2001 From: Brian Harney Date: Mon, 5 Nov 2018 21:44:11 -0800 Subject: [PATCH 1/3] Update README.md --- README.md | 26 +++++--------------------- 1 file changed, 5 insertions(+), 21 deletions(-) diff --git a/README.md b/README.md index 2108628..0c60c94 100644 --- a/README.md +++ b/README.md @@ -62,23 +62,6 @@ docker-compose -f ".\docker-compose.yml" -f ".\docker-compose.override.yml" buil ``` This will build two docker containers. One for the web application, and another for the SQL server database. The databae will be seeded with a starting Admin Account to login with. -# Setup Dependencies/ Requirements without Docker - - VS 2017 or .Net Core Service Pack - - Webpack 4 - - Local Database - - # Run Project without Docker - Install Webpack - - `npm install webpack webpack-cli -g` - - Setup Project - - Navigate to Project Directory - - `dotnet restore` - - `dotnet build` - - Setup local database - - add connection string to appsettings.json - # Run Project - `dotnet run` @@ -86,7 +69,8 @@ This will build two docker containers. One for the web application, and another - `$Env:ASPNETCORE_ENVIRONMENT = "Development"` - `$Env:ASPNETCORE_ENVIRONMENT = "Production"` -I will be working to split this template into multiple repos in the future: - - One that contains Authentication - - Move to the new JavaScriptServices React+Redux template folder structure. - - One that uses Docker +# Road Map +I am working to split this template into repos the correspond to the ARM templating. That is one that spins up Azure Resources needed for Docker, and one that spins up more of a classic application without docker + - [The project without docker can be found here called JSStarter](https://github.com/bharney/JSStarter) + - One that uses Docker. Thats this one. + From b054d8708a6ee15a16b9239a4f44cb415ede0128 Mon Sep 17 00:00:00 2001 From: Mike Mulchrone Date: Tue, 25 Dec 2018 00:54:57 -0600 Subject: [PATCH 2/3] Fixing small typo in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0c60c94..3397296 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ Switch out the values in `appsettings.json` with your own seed account. docker-compose -f ".\docker-compose.yml" -f ".\docker-compose.override.yml" build ``` -This will build two docker containers. One for the web application, and another for the SQL server database. The databae will be seeded with a starting Admin Account to login with. +This will build two docker containers. One for the web application, and another for the SQL server database. The database will be seeded with a starting Admin Account to login with. # Run Project - `dotnet run` From 451e43a60e1d6d9a1b0b72a136a8fecd5648e02c Mon Sep 17 00:00:00 2001 From: Brian Harney Date: Thu, 31 Jan 2019 06:28:18 -0800 Subject: [PATCH 3/3] Create LICENSE --- LICENSE | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..6e4cf2c --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2019 Brian Harney + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE.