Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -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.
28 changes: 6 additions & 22 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,33 +60,17 @@ 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.

# 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`

# Set Environment in PowerShell
- `$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.