Changeset 55149cd
- Timestamp:
- 02/08/21 20:09:09 (4 years ago)
- Branches:
- master
- Children:
- bf9486e
- Parents:
- df62f68
- Files:
-
- 2 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
.gitignore
rdf62f68 r55149cd 1 1 .idea 2 3 back_end/*.java.hsp 4 back_end/*.sonarj 5 back_end/*.sw* 6 back_end/.DS_Store 7 back_end/.settings 8 back_end/.springBeans 9 back_end/bin 10 back_end/build.sh 11 back_end/integration-repo 12 back_end/ivy-cache 13 back_end/jxl.log 14 back_end/jmx.log 15 back_end/derby.log 16 back_end/spring-test/test-output/ 17 back_end/*.gradle 18 back_end/argfile* 19 back_end/activemq-data/ 20 21 back_end/classes/ 22 back_end/build 23 back_end/buildSrc/build 24 back_end/spring-*/build 25 back_end/spring-core/kotlin-coroutines/build 26 back_end/framework-bom/build 27 back_end/integration-tests/build 28 back_end/src/asciidoc/build 29 back_end/target/ 30 31 # Eclipse artifacts, including WTP generated manifests 32 back_end/.classpath 33 back_end/.project 34 back_end/spring-*/src/main/java/META-INF/MANIFEST.MF 35 36 # IDEA artifacts and output dirs 37 back_end/*.iml 38 back_end/*.ipr 39 back_end/*.iws 40 back_end/.idea 41 back_end/out 42 back_end/test-output 43 back_end/atlassian-ide-plugin.xml 44 back_end/.gradletasknamecache 45 46 # Client 2 47 3 48 # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. 4 49 5 50 # dependencies 6 /node_modules7 /.pnp8 .pnp.js51 client_app/node_modules 52 client_app/.pnp 53 client_app/.pnp.js 9 54 10 55 # testing 11 /coverage56 client_app/coverage 12 57 13 58 # production 14 /build59 client_app/build 15 60 16 61 # misc 17 .DS_Store18 .env.local19 .env.development.local20 .env.test.local21 .env.production.local62 client_app/.DS_Store 63 client_app/.env.local 64 client_app/.env.development.local 65 client_app/.env.test.local 66 client_app/.env.production.local 22 67 23 npm-debug.log*24 yarn-debug.log*25 yarn-error.log*68 client_app/npm-debug.log* 69 client_app/yarn-debug.log* 70 client_app/yarn-error.log* 26 71 27 .eslintcache 28 29 *.java.hsp 30 *.sonarj 31 *.sw* 32 .DS_Store 33 .settings 34 .springBeans 35 bin 36 build.sh 37 integration-repo 38 ivy-cache 39 jxl.log 40 jmx.log 41 derby.log 42 spring-test/test-output/ 43 .gradle 44 argfile* 45 activemq-data/ 46 47 classes/ 48 /build 49 buildSrc/build 50 /spring-*/build 51 /spring-core/kotlin-coroutines/build 52 /framework-bom/build 53 /integration-tests/build 54 /src/asciidoc/build 55 target/ 56 57 # Eclipse artifacts, including WTP generated manifests 58 .classpath 59 .project 60 spring-*/src/main/java/META-INF/MANIFEST.MF 61 62 # IDEA artifacts and output dirs 63 *.iml 64 *.ipr 65 *.iws 66 .idea 67 out 68 test-output 69 atlassian-ide-plugin.xml 70 .gradletasknamecache 71 72 # Client APP 72 client_app/.eslintcache
Note:
See TracChangeset
for help on using the changeset viewer.