Skip to content

Commit 3aabfc4

Browse files
committed
2 parents ddb3324 + 464adab commit 3aabfc4

File tree

1,879 files changed

+221842
-90617
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,879 files changed

+221842
-90617
lines changed

README.md

Lines changed: 33 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,33 @@
1-
# module-zero-core-template
2-
ABP Module Zero ASP.NET Core Template
1+
# Introduction
2+
3+
This is a template to create **ASP.NET Core MVC / Angular** based startup projects for [ASP.NET Boilerplate](https://aspnetboilerplate.com/Pages/Documents). It has 2 different versions:
4+
5+
1. [ASP.NET Core MVC & jQuery](https://aspnetboilerplate.com/Pages/Documents/Zero/Startup-Template-Core) (server rendered multi-page application).
6+
2. [ASP.NET Core & Angular](https://aspnetboilerplate.com/Pages/Documents/Zero/Startup-Template-Angular) (single page application).
7+
8+
User Interface is based on [BSB Admin theme](https://github.com/gurayyarar/AdminBSBMaterialDesign).
9+
10+
# Download
11+
12+
Create & download your project from https://aspnetboilerplate.com/Templates
13+
14+
# Screenshots
15+
16+
#### Sample Dashboard Page
17+
![](_screenshots/module-zero-core-template-ui-home.png)
18+
19+
#### User Creation Modal
20+
![](_screenshots/module-zero-core-template-ui-user-create-modal.png)
21+
22+
#### Login Page
23+
24+
![](_screenshots/module-zero-core-template-ui-login.png)
25+
26+
# Documentation
27+
28+
* [ASP.NET Core MVC & jQuery version.](https://aspnetboilerplate.com/Pages/Documents/Zero/Startup-Template-Core)
29+
* [ASP.NET Core & Angular version.](https://aspnetboilerplate.com/Pages/Documents/Zero/Startup-Template-Angular)
30+
31+
# License
32+
33+
[MIT](LICENSE).
157 KB
Loading
31.1 KB
Loading
86 KB
Loading

angular/.angular-cli.json

Lines changed: 23 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -24,44 +24,55 @@
2424
"tsconfig": "tsconfig.json",
2525
"prefix": "app",
2626
"styles": [
27+
"assets/fonts/roboto/roboto.css",
28+
"assets/fonts/material-icons/materialicons.css",
29+
"../node_modules/bootstrap/dist/css/bootstrap.min.css",
2730
"../node_modules/simple-line-icons/css/simple-line-icons.css",
2831
"../node_modules/font-awesome/css/font-awesome.css",
2932
"../node_modules/famfamfam-flags/dist/sprite/famfamfam-flags.css",
30-
3133
"../node_modules/toastr/build/toastr.css",
3234
"../node_modules/sweetalert/dist/sweetalert.css",
33-
34-
"../src/shared/core.less",
35-
36-
"../node_modules/bootstrap/dist/css/bootstrap.min.css",
37-
"../node_modules/bootswatch/cosmo/bootstrap.min.css"
35+
"../node_modules/node-waves/dist/waves.css",
36+
"../src/bsb-theme/css/materialize.css",
37+
"../src/bsb-theme/css/style.css",
38+
"../src/bsb-theme/css/themes/all-themes.css",
39+
"../src/shared/core.less"
3840
],
3941
"scripts": [
4042
"../node_modules/jquery/dist/jquery.min.js",
4143
"../node_modules/jquery-migrate/dist/jquery-migrate.min.js",
4244
"../node_modules/js-cookie/src/js.cookie.js",
43-
4445
"../node_modules/bootstrap/dist/js/bootstrap.js",
45-
4646
"../node_modules/lodash/lodash.min.js",
4747
"../node_modules/moment/min/moment.min.js",
48-
4948
"../node_modules/signalr/jquery.signalR.js",
50-
5149
"../node_modules/toastr/toastr.js",
5250
"../node_modules/sweetalert/dist/sweetalert-dev.js",
5351
"../node_modules/block-ui/jquery.blockUI.js",
5452
"../node_modules/spin.js/spin.min.js",
5553
"../node_modules/spin.js/jquery.spin.js",
5654
"../node_modules/push.js/push.min.js",
57-
55+
"../node_modules/jquery-slimscroll/jquery.slimscroll.min.js",
56+
"../node_modules/node-waves/dist/waves.min.js",
57+
"../node_modules/jquery-countto/jquery.countTo.js",
58+
"../node_modules/raphael/raphael.min.js",
59+
"../node_modules/morris.js/morris.min.js",
60+
"../node_modules/chart.js/dist/Chart.bundle.min.js",
61+
"../node_modules/flot/jquery.flot.js",
62+
"../node_modules/flot/jquery.flot.resize.js",
63+
"../node_modules/flot/jquery.flot.pie.js",
64+
"../node_modules/flot/jquery.flot.categories.js",
65+
"../node_modules/flot/jquery.flot.time.js",
66+
"../node_modules/jquery-sparkline/jquery.sparkline.min.js",
5867
"../node_modules/abp-web-resources/Abp/Framework/scripts/abp.js",
5968
"../node_modules/abp-web-resources/Abp/Framework/scripts/libs/abp.jquery.js",
6069
"../node_modules/abp-web-resources/Abp/Framework/scripts/libs/abp.toastr.js",
6170
"../node_modules/abp-web-resources/Abp/Framework/scripts/libs/abp.blockUI.js",
6271
"../node_modules/abp-web-resources/Abp/Framework/scripts/libs/abp.spin.js",
6372
"../node_modules/abp-web-resources/Abp/Framework/scripts/libs/abp.sweet-alert.js",
64-
"../node_modules/abp-web-resources/Abp/Framework/scripts/libs/abp.moment.js"
73+
"../node_modules/abp-web-resources/Abp/Framework/scripts/libs/abp.moment.js",
74+
"../src/bsb-theme/js/admin.js",
75+
"../src/bsb-theme/js/demo.js"
6576
],
6677
"environmentSource": "environments/environment.ts",
6778
"environments": {

angular/.editorconfig

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
# Editor configuration, see http://editorconfig.org
1+
# Editor configuration, see http://editorconfig.org
22
root = true
33

44
[*]
55
charset = utf-8
66
indent_style = space
7-
indent_size = 2
87
insert_final_newline = true
98
trim_trailing_whitespace = true
109

angular/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*.launch
1616
.settings/
1717
.vs/
18-
obj/
18+
[Oo]bj/
1919
bin/
2020

2121
# IDE - VSCode

angular/AbpCompanyName.AbpProjectName.AngularUI.csproj

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,10 @@
2525
<Reference Include="Microsoft.CSharp" />
2626
</ItemGroup>
2727

28+
<ItemGroup>
29+
<None Update="Dockerfile">
30+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
31+
</None>
32+
</ItemGroup>
33+
2834
</Project>

angular/Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
FROM nginx
2+
3+
COPY . /usr/share/nginx/html

angular/obj/AbpCompanyName.AbpProjectName.AngularUI.csproj.nuget.g.props

Lines changed: 0 additions & 15 deletions
This file was deleted.

0 commit comments

Comments
 (0)