.gitignore 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404
  1. deploy.sh
  2. bigScreen
  3. dist
  4. ### VisualStudioCode template
  5. .vscode/*
  6. !.vscode/settings.json
  7. !.vscode/tasks.json
  8. !.vscode/launch.json
  9. !.vscode/extensions.json
  10. *.code-workspace
  11. # Local History for Visual Studio Code
  12. .history/
  13. ### JetBrains template
  14. # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
  15. # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
  16. # User-specific stuff
  17. .idea/**/workspace.xml
  18. .idea/**/tasks.xml
  19. .idea/**/usage.statistics.xml
  20. .idea/**/dictionaries
  21. .idea/**/shelf
  22. .idea
  23. # Generated files
  24. .idea/**/contentModel.xml
  25. # Sensitive or high-churn files
  26. .idea/**/dataSources/
  27. .idea/**/dataSources.ids
  28. .idea/**/dataSources.local.xml
  29. .idea/**/sqlDataSources.xml
  30. .idea/**/dynamic.xml
  31. .idea/**/uiDesigner.xml
  32. .idea/**/dbnavigator.xml
  33. # Gradle
  34. .idea/**/gradle.xml
  35. .idea/**/libraries
  36. # Gradle and Maven with auto-import
  37. # When using Gradle or Maven with auto-import, you should exclude module files,
  38. # since they will be recreated, and may cause churn. Uncomment if using
  39. # auto-import.
  40. # .idea/artifacts
  41. # .idea/compiler.xml
  42. # .idea/jarRepositories.xml
  43. # .idea/modules.xml
  44. # .idea/*.iml
  45. # .idea/modules
  46. # *.iml
  47. # *.ipr
  48. # CMake
  49. cmake-build-*/
  50. # Mongo Explorer plugin
  51. .idea/**/mongoSettings.xml
  52. # File-based project format
  53. *.iws
  54. # IntelliJ
  55. out/
  56. # mpeltonen/sbt-idea plugin
  57. .idea_modules/
  58. # JIRA plugin
  59. atlassian-ide-plugin.xml
  60. # Cursive Clojure plugin
  61. .idea/replstate.xml
  62. # Crashlytics plugin (for Android Studio and IntelliJ)
  63. com_crashlytics_export_strings.xml
  64. crashlytics.properties
  65. crashlytics-build.properties
  66. fabric.properties
  67. # Editor-based Rest Client
  68. .idea/httpRequests
  69. # Android studio 3.1+ serialized cache file
  70. .idea/caches/build_file_checksums.ser
  71. ### Eclipse template
  72. .metadata
  73. bin/
  74. tmp/
  75. *.tmp
  76. *.bak
  77. *.swp
  78. *~.nib
  79. local.properties
  80. .settings/
  81. .loadpath
  82. .recommenders
  83. # External tool builders
  84. .externalToolBuilders/
  85. # Locally stored "Eclipse launch configurations"
  86. *.launch
  87. # PyDev specific (Python IDE for Eclipse)
  88. *.pydevproject
  89. # CDT-specific (C/C++ Development Tooling)
  90. .cproject
  91. # CDT- autotools
  92. .autotools
  93. # Java annotation processor (APT)
  94. .factorypath
  95. # PDT-specific (PHP Development Tools)
  96. .buildpath
  97. # sbteclipse plugin
  98. .target
  99. # Tern plugin
  100. .tern-project
  101. # TeXlipse plugin
  102. .texlipse
  103. # STS (Spring Tool Suite)
  104. .springBeans
  105. # Code Recommenders
  106. .recommenders/
  107. # Annotation Processing
  108. .apt_generated/
  109. .apt_generated_test/
  110. # Scala IDE specific (Scala & Java development for Eclipse)
  111. .cache-main
  112. .scala_dependencies
  113. .worksheet
  114. # Uncomment this line if you wish to ignore the project description file.
  115. # Typically, this file would be tracked if it contains build/dependency configurations:
  116. #.project
  117. ### Node template
  118. # Logs
  119. logs
  120. *.log
  121. npm-debug.log*
  122. yarn-debug.log*
  123. yarn-error.log*
  124. lerna-debug.log*
  125. # Diagnostic reports (https://nodejs.org/api/report.html)
  126. report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
  127. # Runtime data
  128. pids
  129. *.pid
  130. *.seed
  131. *.pid.lock
  132. # Directory for instrumented libs generated by jscoverage/JSCover
  133. lib-cov
  134. # Coverage directory used by tools like istanbul
  135. coverage
  136. *.lcov
  137. # nyc test coverage
  138. .nyc_output
  139. # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
  140. .grunt
  141. # Bower dependency directory (https://bower.io/)
  142. bower_components
  143. # node-waf configuration
  144. .lock-wscript
  145. # Compiled binary addons (https://nodejs.org/api/addons.html)
  146. build/Release
  147. # Dependency directories
  148. node_modules/
  149. jspm_packages/
  150. # Snowpack dependency directory (https://snowpack.dev/)
  151. web_modules/
  152. # TypeScript cache
  153. *.tsbuildinfo
  154. # Optional npm cache directory
  155. .npm
  156. # Optional eslint cache
  157. .eslintcache
  158. # Microbundle cache
  159. .rpt2_cache/
  160. .rts2_cache_cjs/
  161. .rts2_cache_es/
  162. .rts2_cache_umd/
  163. # Optional REPL history
  164. .node_repl_history
  165. # Output of 'npm pack'
  166. *.tgz
  167. # Yarn Integrity file
  168. .yarn-integrity
  169. # dotenv environment variables file
  170. .env
  171. .env.test
  172. # parcel-bundler cache (https://parceljs.org/)
  173. .cache
  174. .parcel-cache
  175. # Next.js build output
  176. .next
  177. out
  178. # Nuxt.js build / generate output
  179. .nuxt
  180. dist
  181. # Gatsby files
  182. .cache/
  183. # Comment in the public line in if your project uses Gatsby and not Next.js
  184. # https://nextjs.org/blog/next-9-1#public-directory-support
  185. # public
  186. # vuepress build output
  187. .vuepress/dist
  188. # Serverless directories
  189. .serverless/
  190. # FuseBox cache
  191. .fusebox/
  192. # DynamoDB Local files
  193. .dynamodb/
  194. # TernJS port file
  195. .tern-port
  196. # Stores VSCode versions used for testing VSCode extensions
  197. .vscode-test
  198. # yarn v2
  199. .yarn/cache
  200. .yarn/unplugged
  201. .yarn/build-state.yml
  202. .yarn/install-state.gz
  203. .pnp.*
  204. ### Vue template
  205. # gitignore template for Vue.js projects
  206. #
  207. # Recommended template: Node.gitignore
  208. # TODO: where does this rule come from?
  209. docs/_book
  210. ### Windows template
  211. # Windows thumbnail cache files
  212. Thumbs.db
  213. Thumbs.db:encryptable
  214. ehthumbs.db
  215. ehthumbs_vista.db
  216. # Dump file
  217. *.stackdump
  218. # Folder config file
  219. [Dd]esktop.ini
  220. # Recycle Bin used on file shares
  221. $RECYCLE.BIN/
  222. # Windows Installer files
  223. *.cab
  224. *.msi
  225. *.msix
  226. *.msm
  227. *.msp
  228. # Windows shortcuts
  229. *.lnk
  230. ### macOS template
  231. # General
  232. .DS_Store
  233. .AppleDouble
  234. .LSOverride
  235. # Icon must end with two \r
  236. Icon
  237. # Thumbnails
  238. ._*
  239. # Files that might appear in the root of a volume
  240. .DocumentRevisions-V100
  241. .fseventsd
  242. .Spotlight-V100
  243. .TemporaryItems
  244. .Trashes
  245. .VolumeIcon.icns
  246. .com.apple.timemachine.donotpresent
  247. # Directories potentially created on remote AFP share
  248. .AppleDB
  249. .AppleDesktop
  250. Network Trash Folder
  251. Temporary Items
  252. .apdisk
  253. ### SublimeText template
  254. # Cache files for Sublime Text
  255. *.tmlanguage.cache
  256. *.tmPreferences.cache
  257. *.stTheme.cache
  258. # Workspace files are user-specific
  259. *.sublime-workspace
  260. # Project files should be checked into the repository, unless a significant
  261. # proportion of contributors will probably not be using Sublime Text
  262. # *.sublime-project
  263. # SFTP configuration file
  264. sftp-config.json
  265. sftp-config-alt*.json
  266. # Package control specific files
  267. Package Control.last-run
  268. Package Control.ca-list
  269. Package Control.ca-bundle
  270. Package Control.system-ca-bundle
  271. Package Control.cache/
  272. Package Control.ca-certs/
  273. Package Control.merged-ca-bundle
  274. Package Control.user-ca-bundle
  275. oscrypto-ca-bundle.crt
  276. bh_unicode_properties.cache
  277. # Sublime-github package stores a github token in this file
  278. # https://packagecontrol.io/packages/sublime-github
  279. GitHub.sublime-settings
  280. lib
  281. gc-starter-lowcode-ui
  282. libApp
  283. HELP.md
  284. target/
  285. !.mvn/wrapper/maven-wrapper.jar
  286. !**/src/main/**/target/
  287. !**/src/test/**/target/
  288. ### STS ###
  289. .apt_generated
  290. .classpath
  291. .factorypath
  292. .project
  293. .settings
  294. .springBeans
  295. .sts4-cache
  296. ### IntelliJ IDEA ###
  297. .idea
  298. *.iws
  299. *.iml
  300. *.ipr
  301. ### NetBeans ###
  302. /nbproject/private/
  303. /nbbuild/
  304. /dist/
  305. /nbdist/
  306. /.nb-gradle/
  307. build/
  308. !**/src/main/**/build/
  309. !**/src/test/**/build/
  310. ### VS Code ###
  311. .vscode/
  312. # 忽略配置文件提交
  313. application-*.yml
  314. !application-demo.yml