Skip to content

Commit 1184f5c

Browse files
committed
Complete the modular design of the architecture
1 parent 4a3c305 commit 1184f5c

File tree

258 files changed

+8253
-6210
lines changed

Some content is hidden

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

258 files changed

+8253
-6210
lines changed

.all-contributorsrc

-15
This file was deleted.

.gitignore

+103-17
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,105 @@
1-
.idea
2-
3-
target
4-
logs
5-
*.log
6-
npm-debug.log*
7-
yarn-debug.log*
8-
yarn-error.log*
9-
pnpm-debug.log*
10-
lerna-debug.log*
11-
12-
node_modules
13-
**/node_modules
14-
**/dist
15-
**/.idea
1+
### JetBrains template
2+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
3+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
164

17-
charts/templates/configMap.yaml
5+
# User-specific stuff
6+
.idea/**/workspace.xml
7+
.idea/**/tasks.xml
8+
.idea/**/usage.statistics.xml
9+
.idea/**/dictionaries
10+
.idea/**/shelf
11+
12+
# AWS User-specific
13+
.idea/**/aws.xml
14+
15+
# Generated files
16+
.idea/**/contentModel.xml
17+
18+
# Sensitive or high-churn files
19+
.idea/**/dataSources/
20+
.idea/**/dataSources.ids
21+
.idea/**/dataSources.local.xml
22+
.idea/**/sqlDataSources.xml
23+
.idea/**/dynamic.xml
24+
.idea/**/uiDesigner.xml
25+
.idea/**/dbnavigator.xml
26+
27+
# Gradle
28+
.idea/**/gradle.xml
29+
.idea/**/libraries
30+
31+
# Gradle and Maven with auto-import
32+
# When using Gradle or Maven with auto-import, you should exclude module files,
33+
# since they will be recreated, and may cause churn. Uncomment if using
34+
# auto-import.
35+
# .idea/artifacts
36+
# .idea/compiler.xml
37+
# .idea/jarRepositories.xml
38+
# .idea/modules.xml
39+
# .idea/*.iml
40+
# .idea/modules
41+
# *.iml
42+
# *.ipr
43+
44+
# CMake
45+
cmake-build-*/
46+
47+
# Mongo Explorer plugin
48+
.idea/**/mongoSettings.xml
49+
50+
# File-based project format
51+
*.iws
52+
53+
# IntelliJ
54+
out/
55+
56+
# mpeltonen/sbt-idea plugin
57+
.idea_modules/
58+
59+
# JIRA plugin
60+
atlassian-ide-plugin.xml
61+
62+
# Cursive Clojure plugin
63+
.idea/replstate.xml
64+
65+
# SonarLint plugin
66+
.idea/sonarlint/
67+
68+
# Crashlytics plugin (for Android Studio and IntelliJ)
69+
com_crashlytics_export_strings.xml
70+
crashlytics.properties
71+
crashlytics-build.properties
72+
fabric.properties
73+
74+
# Editor-based Rest Client
75+
.idea/httpRequests
76+
77+
# Android studio 3.1+ serialized cache file
78+
.idea/caches/build_file_checksums.ser
79+
80+
### Rust template
81+
# Generated by Cargo
82+
# will have compiled files and executables
83+
debug/
84+
target/
85+
86+
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
87+
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
88+
Cargo.lock
89+
90+
# These are backup files generated by rustfmt
91+
**/*.rs.bk
92+
93+
# MSVC Windows builds of rustc generate these, which store debugging information
94+
*.pdb
95+
96+
### rust-analyzer template
97+
# Can be generated by other build systems other than cargo (ex: bazelbuild/rust_rules)
98+
rust-project.json
99+
100+
101+
.env
18102
data
19-
deploy
103+
104+
charts/templates/configMap.yaml
105+
.idea

0 commit comments

Comments
 (0)