Skip to content

Commit 1d63934

Browse files
committed
The project was carried out using empty angular and the aspnet-core project.
1 parent e09acf3 commit 1d63934

File tree

1,820 files changed

+73154
-320321
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,820 files changed

+73154
-320321
lines changed

.gitattributes

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
**/Scripts/** linguist-vendored
2-
**/bsb-theme/** linguist-vendored
3-
1+
**/wwwroot/lib/** linguist-vendored
2+
**/wwwroot/css/** linguist-vendored

.gitignore

Lines changed: 9 additions & 195 deletions
Original file line numberDiff line numberDiff line change
@@ -1,198 +1,12 @@
1-
## Ignore Visual Studio temporary files, build results, and
2-
## files generated by popular Visual Studio add-ons.
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
32

4-
# User-specific files
5-
*.suo
6-
*.user
7-
*.userosscache
8-
*.sln.docstates
9-
10-
# User-specific files (MonoDevelop/Xamarin Studio)
11-
*.userprefs
12-
13-
# Build results
14-
[Dd]ebug/
15-
[Dd]ebugPublic/
16-
[Rr]elease/
17-
[Rr]eleases/
18-
x64/
19-
x86/
20-
build/
21-
bld/
22-
[Bb]in/
23-
[Oo]bj/
24-
25-
# Visual Studo 2015 cache/options directory
3+
# IDEs and editors
264
.vs/
5+
obj/
6+
bin/
7+
aspnet-core/src/EventCloud.Web.Host/App_Data/Logs/
8+
aspnet-core/src/EventCloud.Web.Mvc/App_Data/Logs/
9+
aspnet-core/src/EventCloud.Migrator/Logs/Logs.txt
10+
aspnet-core/build/outputs/
11+
aspnet-core/docker/mvc/Mvc-Logs/
2712

28-
# MSTest test Results
29-
[Tt]est[Rr]esult*/
30-
[Bb]uild[Ll]og.*
31-
32-
# NUNIT
33-
*.VisualState.xml
34-
TestResult.xml
35-
36-
# Build Results of an ATL Project
37-
[Dd]ebugPS/
38-
[Rr]eleasePS/
39-
dlldata.c
40-
41-
*_i.c
42-
*_p.c
43-
*_i.h
44-
*.ilk
45-
*.meta
46-
*.obj
47-
*.pch
48-
*.pdb
49-
*.pgc
50-
*.pgd
51-
*.rsp
52-
*.sbr
53-
*.tlb
54-
*.tli
55-
*.tlh
56-
*.tmp
57-
*.tmp_proj
58-
*.log
59-
*.vspscc
60-
*.vssscc
61-
.builds
62-
*.pidb
63-
*.svclog
64-
*.scc
65-
66-
# Chutzpah Test files
67-
_Chutzpah*
68-
69-
# Visual C++ cache files
70-
ipch/
71-
*.aps
72-
*.ncb
73-
*.opensdf
74-
*.sdf
75-
*.cachefile
76-
77-
# Visual Studio profiler
78-
*.psess
79-
*.vsp
80-
*.vspx
81-
82-
# TFS 2012 Local Workspace
83-
$tf/
84-
85-
# Guidance Automation Toolkit
86-
*.gpState
87-
88-
# ReSharper is a .NET coding add-in
89-
_ReSharper*/
90-
*.[Rr]e[Ss]harper
91-
*.DotSettings.user
92-
93-
# JustCode is a .NET coding addin-in
94-
.JustCode
95-
96-
# TeamCity is a build add-in
97-
_TeamCity*
98-
99-
# DotCover is a Code Coverage Tool
100-
*.dotCover
101-
102-
# NCrunch
103-
_NCrunch_*
104-
.*crunch*.local.xml
105-
106-
# MightyMoose
107-
*.mm.*
108-
AutoTest.Net/
109-
110-
# Web workbench (sass)
111-
.sass-cache/
112-
113-
# Installshield output folder
114-
[Ee]xpress/
115-
116-
# DocProject is a documentation generator add-in
117-
DocProject/buildhelp/
118-
DocProject/Help/*.HxT
119-
DocProject/Help/*.HxC
120-
DocProject/Help/*.hhc
121-
DocProject/Help/*.hhk
122-
DocProject/Help/*.hhp
123-
DocProject/Help/Html2
124-
DocProject/Help/html
125-
126-
# Click-Once directory
127-
publish/
128-
129-
# Publish Web Output
130-
*.[Pp]ublish.xml
131-
*.azurePubxml
132-
# TODO: Comment the next line if you want to checkin your web deploy settings
133-
# but database connection strings (with potential passwords) will be unencrypted
134-
*.pubxml
135-
*.publishproj
136-
137-
# NuGet Packages
138-
*.nupkg
139-
# The packages folder can be ignored because of Package Restore
140-
**/packages/*
141-
# except build/, which is used as an MSBuild target.
142-
!**/packages/build/
143-
# Uncomment if necessary however generally it will be regenerated when needed
144-
#!**/packages/repositories.config
145-
146-
# Windows Azure Build Output
147-
csx/
148-
*.build.csdef
149-
150-
# Windows Store app package directory
151-
AppPackages/
152-
153-
# Others
154-
*.[Cc]ache
155-
ClientBin/
156-
[Ss]tyle[Cc]op.*
157-
~$*
158-
*~
159-
*.dbmdl
160-
*.dbproj.schemaview
161-
*.pfx
162-
*.publishsettings
163-
node_modules/
164-
bower_components/
165-
166-
# RIA/Silverlight projects
167-
Generated_Code/
168-
169-
# Backup & report files from converting an old project file
170-
# to a newer Visual Studio version. Backup files are not needed,
171-
# because we have git ;-)
172-
_UpgradeReport_Files/
173-
Backup*/
174-
UpgradeLog*.XML
175-
UpgradeLog*.htm
176-
177-
# SQL Server files
178-
*.mdf
179-
*.ldf
180-
181-
# Business Intelligence projects
182-
*.rdl.data
183-
*.bim.layout
184-
*.bim_*.settings
185-
186-
# Microsoft Fakes
187-
FakesAssemblies/
188-
189-
# Node.js Tools for Visual Studio
190-
.ntvs_analysis.dat
191-
192-
# Visual Studio 6 build log
193-
*.plg
194-
195-
# Visual Studio 6 workspace options file
196-
*.opt
197-
/src/EventCloud.Web/Logs
198-
/mvc-angularjs/src/EventCloud.Web/App_Data/Logs

_screenshots/ui-home.png

100 KB
Loading

_screenshots/ui-login.png

33.7 KB
Loading

_screenshots/ui-user-create-modal.png

70.2 KB
Loading

angular/.browserslistrc

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# This file is used by the build system to adjust CSS and JS output to support the specified browsers below.
2+
# For additional information regarding the format and rule options, please see:
3+
# https://github.com/browserslist/browserslist#queries
4+
5+
# You can see what browsers were selected by your queries by running:
6+
# npx browserslist
7+
8+
> 0.5%
9+
last 2 versions
10+
Firefox ESR
11+
not dead
12+
not IE 9-11 # For IE 9-11 support, remove 'not'.

angular/.dockerignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
.env
2+
.git
3+
.gitignore
4+
.vs
5+
.vscode
6+
*/bin
7+
*/obj
8+
*/node_modules
9+
*/dist
10+
*/.git
11+
*/.idea
12+
*/.vs
13+
*/.vscode
14+
**/.toolstarget
File renamed without changes.

angular/.gitignore

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# See http://help.github.com/ignore-files/ for more about ignoring files.
2+
3+
# compiled output
4+
/dist
5+
/tmp
6+
7+
# dependencies
8+
/node_modules
9+
10+
# IDEs and editors
11+
/.idea
12+
.project
13+
.classpath
14+
.c9/
15+
*.launch
16+
.settings/
17+
.vs/
18+
[Oo]bj/
19+
bin/
20+
21+
# IDE - VSCode
22+
.vscode/*
23+
!.vscode/settings.json
24+
!.vscode/tasks.json
25+
!.vscode/launch.json
26+
!.vscode/extensions.json
27+
28+
# misc
29+
//.angular/cache
30+
.sass-cache
31+
/connect.lock
32+
/coverage/*
33+
/libpeerconnection.log
34+
npm-debug.log
35+
testem.log
36+
/typings
37+
38+
# e2e
39+
/e2e/*.js
40+
/e2e/*.map
41+
42+
#System Files
43+
.DS_Store
44+
Thumbs.db
45+
46+
.angular

angular/.vscode/launch.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
3+
"configurations": [
4+
{
5+
"name": "Launch Chrome",
6+
"request": "launch",
7+
"type": "chrome",
8+
"url": "http://localhost:8080",
9+
"webRoot": "${workspaceFolder}"
10+
},
11+
{
12+
"type": "chrome",
13+
"request": "launch",
14+
"name": "Launch Chrome against localhost",
15+
"url": "http://localhost:4200",
16+
"sourceMaps": true,
17+
"webRoot": "${workspaceFolder}"
18+
}
19+
]
20+
}

0 commit comments

Comments
 (0)