Skip to content

Commit

Permalink
Angular CLI integration RC1
Browse files Browse the repository at this point in the history
  • Loading branch information
Ebenezer Monney committed Mar 4, 2018
1 parent e0d2453 commit 21880e9
Show file tree
Hide file tree
Showing 73 changed files with 577 additions and 459 deletions.
4 changes: 3 additions & 1 deletion QuickApp.sln
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
ProjectSection(SolutionItems) = preProject
.gitignore = .gitignore
LICENSE = LICENSE
NuGet.config = NuGet.config
README.md = README.md
EndProjectSection
EndProject
Expand Down Expand Up @@ -39,4 +38,7 @@ Global
{4B467D5D-FA6F-412E-8B45-45BF0630180C} = {17070A46-661F-4A01-8B84-CE9C59173779}
{C4C99D7C-0A91-418A-AE87-FD4EE43892D8} = {17070A46-661F-4A01-8B84-CE9C59173779}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {46C86587-3EE9-4CF2-966A-9160EF864A31}
EndGlobalSection
EndGlobal
4 changes: 2 additions & 2 deletions src/DAL/DAL.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="2.0.1" />
<PackageReference Include="OpenIddict" Version="2.0.0-rc3-0878" />
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="2.0.0-rc3-0878" />
<PackageReference Include="OpenIddict" Version="2.0.0-rc2-final" />
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="2.0.0-rc2-final" />
</ItemGroup>

</Project>
6 changes: 5 additions & 1 deletion src/QuickApp/ClientApp/.angular-cli.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@
"styles.css"
],
"scripts": [
"../node_modules/jquery/dist/jquery.min.js"
"../node_modules/jquery/dist/jquery.min.js",
"../node_modules/bootstrap/dist/js/bootstrap.js",
"../node_modules/bootstrap-toggle/js/bootstrap-toggle.js",
"../node_modules/bootstrap-select/dist/js/bootstrap-select.js",
"../node_modules/bootstrap-datepicker/dist/js/bootstrap-datepicker.js"
],
"environmentSource": "environments/environment.ts",
"environments": {
Expand Down
2 changes: 1 addition & 1 deletion src/QuickApp/ClientApp/.editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ root = true
[*]
charset = utf-8
indent_style = space
indent_size = 2
indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true

Expand Down
8 changes: 8 additions & 0 deletions src/QuickApp/ClientApp/e2e/app.e2e-spec.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// ======================================
// Author: Ebenezer Monney
// Email: info@ebenmonney.com
// Copyright (c) 2018 www.ebenmonney.com
//
// ==> Gun4Hire: [email protected]
// ======================================

import { AppPage } from './app.po';

describe('QuickApp', () => {
Expand Down
8 changes: 8 additions & 0 deletions src/QuickApp/ClientApp/e2e/app.po.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// ======================================
// Author: Ebenezer Monney
// Email: info@ebenmonney.com
// Copyright (c) 2018 www.ebenmonney.com
//
// ==> Gun4Hire: [email protected]
// ======================================

import { browser, by, element } from 'protractor';

export class AppPage {
Expand Down
8 changes: 8 additions & 0 deletions src/QuickApp/ClientApp/karma.conf.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// ======================================
// Author: Ebenezer Monney
// Email: info@ebenmonney.com
// Copyright (c) 2018 www.ebenmonney.com
//
// ==> Gun4Hire: [email protected]
// ======================================

// Karma configuration file, see link for more information
// https://karma-runner.github.io/1.0/config/configuration-file.html

Expand Down
21 changes: 8 additions & 13 deletions src/QuickApp/ClientApp/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion src/QuickApp/ClientApp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
"bootstrap-datepicker": "^1.7.1",
"bootstrap-select": "^1.12.4",
"bootstrap-toggle": "^2.2.2",
"bootstrap-vertical-tabs": "^1.2.2",
"chart.js": "^2.7.1",
"core-js": "^2.5.3",
"font-awesome": "^4.7.0",
Expand Down
8 changes: 8 additions & 0 deletions src/QuickApp/ClientApp/protractor.conf.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
// ======================================
// Author: Ebenezer Monney
// Email: info@ebenmonney.com
// Copyright (c) 2018 www.ebenmonney.com
//
// ==> Gun4Hire: [email protected]
// ======================================

// Protractor configuration file, see link for more information
// https://github.com/angular/protractor/blob/master/lib/config.ts

Expand Down
4 changes: 2 additions & 2 deletions src/QuickApp/ClientApp/src/app/app-error.handler.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// ======================================
// ======================================
// Author: Ebenezer Monney
// Email: info@ebenmonney.com
// Copyright (c) 2018 www.ebenmonney.com
Expand Down Expand Up @@ -33,4 +33,4 @@ export class AppErrorHandler extends ErrorHandler {

super.handleError(error);
}
}
}
4 changes: 2 additions & 2 deletions src/QuickApp/ClientApp/src/app/app-routing.module.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// ======================================
// ======================================
// Author: Ebenezer Monney
// Email: info@ebenmonney.com
// Copyright (c) 2018 www.ebenmonney.com
Expand Down Expand Up @@ -43,4 +43,4 @@ import { AuthGuard } from './services/auth-guard.service';
AuthService, AuthGuard
]
})
export class AppRoutingModule { }
export class AppRoutingModule { }
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ <h4 class="text-center text-muted">CHECK OUT THE PREMIUM TEMPLATES BELOW:</h4>
</div>
<div class="col-sm-8">
<h2>Our Values</h2>
<h4><strong>MISSION:</strong> Quality, Affordable and Easy-to-use software resources for all</h4>
<h4><strong>MISSION:</strong> Quality, Affordable and Easy-to-adopt software resources for all</h4>
<p>
<strong>VISION:</strong> It is our desire to boost productivity in your everyday life. Time is the most valuable resource anyone has,
that is why we at Eben Monney<sup>&reg;</sup> Solutions wish to provide quality, affordable and easy-to-use software resources, tools and libraries that makes you more efficient. Get more done in less time!
<strong>VISION:</strong> It is our desire to boost productivity in your everyday tasks. Time is the most valuable resource anyone has,
that is why we at Eben Monney<sup>&reg;</sup> Solutions wish to provide quality, affordable and easy-to-use software resources, tools and libraries that makes you efficient, and gets you doing more in less time.
<br />
<br />
Productivity, Accessibility and Affordability is at the core of our values
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
// ==> Gun4Hire: [email protected]
// ======================================

import { assert } from 'chai';

import { TestBed, async } from '@angular/core/testing';
import { RouterTestingModule } from '@angular/router/testing';
import { FormsModule } from "@angular/forms";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// ======================================
// ======================================
// Author: Ebenezer Monney
// Email: info@ebenmonney.com
// Copyright (c) 2018 www.ebenmonney.com
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// ======================================
// ======================================
// Author: Ebenezer Monney
// Email: info@ebenmonney.com
// Copyright (c) 2018 www.ebenmonney.com
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// ======================================
// ======================================
// Author: Ebenezer Monney
// Email: info@ebenmonney.com
// Copyright (c) 2018 www.ebenmonney.com
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// ======================================
// ======================================
// Author: Ebenezer Monney
// Email: info@ebenmonney.com
// Copyright (c) 2018 www.ebenmonney.com
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// ======================================
// ======================================
// Author: Ebenezer Monney
// Email: info@ebenmonney.com
// Copyright (c) 2018 www.ebenmonney.com
Expand Down Expand Up @@ -34,4 +34,4 @@ export class SearchBoxComponent {
this.searchInput.nativeElement.value = '';
this.onValueChange(this.searchInput.nativeElement.value);
}
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// ======================================
// ======================================
// Author: Ebenezer Monney
// Email: info@ebenmonney.com
// Copyright (c) 2018 www.ebenmonney.com
Expand Down Expand Up @@ -133,4 +133,4 @@ export class StatisticsDemoComponent implements OnInit, OnDestroy {
chartHovered(e: any): void {
console.log(e);
}
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// ======================================
// ======================================
// Author: Ebenezer Monney
// Email: info@ebenmonney.com
// Copyright (c) 2018 www.ebenmonney.com
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// ======================================
// ======================================
// Author: Ebenezer Monney
// Email: info@ebenmonney.com
// Copyright (c) 2018 www.ebenmonney.com
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// ======================================
// ======================================
// Author: Ebenezer Monney
// Email: info@ebenmonney.com
// Copyright (c) 2018 www.ebenmonney.com
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// ======================================
// ======================================
// Author: Ebenezer Monney
// Email: info@ebenmonney.com
// Copyright (c) 2018 www.ebenmonney.com
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// ======================================
// ======================================
// Author: Ebenezer Monney
// Email: info@ebenmonney.com
// Copyright (c) 2018 www.ebenmonney.com
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
.side-menu {
min-width: 120px;
min-width: 120px;
}

.separator-hr {
margin-top: 0;
margin-bottom: 10px;
margin-top: 0;
margin-bottom: 10px;
}

[hidden] {
display: none;
display: none;
}
Loading

0 comments on commit 21880e9

Please sign in to comment.