Skip to content

Commit 759a7e3

Browse files
committedSep 30, 2021
initial commit
0 parents  commit 759a7e3

File tree

192 files changed

+11149
-0
lines changed

Some content is hidden

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

192 files changed

+11149
-0
lines changed
 

‎ac2-console-master/.editorconfig

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# EditorConfig is awesome: https://EditorConfig.org
2+
3+
# top-most EditorConfig file
4+
root = true
5+
6+
[*]
7+
indent_style = space
8+
indent_size = 2
9+
end_of_line = lf
10+
charset = utf-8
11+
trim_trailing_whitespace = false
12+
insert_final_newline = false

‎ac2-console-master/.gitignore

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
node_modules/
2+
package-lock.json
3+
dist/
4+
.env
5+
app/**/.env.ts
6+
.env.ts
7+
8+
# Created by https://www.gitignore.io/api/angular
9+
# Edit at https://www.gitignore.io/?templates=angular
10+
11+
### Angular ###
12+
## Angular ##
13+
# compiled output
14+
dist/
15+
tmp/
16+
app/**/*.js
17+
app/**/*.js.map
18+
19+
# dependencies
20+
node_modules/
21+
bower_components/
22+
23+
# IDEs and editors
24+
.idea/
25+
26+
# misc
27+
.sass-cache/
28+
connect.lock/
29+
coverage/
30+
libpeerconnection.log/
31+
npm-debug.log
32+
testem.log
33+
typings/
34+
35+
# e2e
36+
e2e/*.js
37+
e2e/*.map
38+
39+
#System Files
40+
.DS_Store/
41+
42+
# End of https://www.gitignore.io/api/angular
43+
yarn.lock
44+
45+
.vs/

0 commit comments

Comments
 (0)