Changeset 55149cd


Ignore:
Timestamp:
02/08/21 20:09:09 (3 years ago)
Author:
Vzdra <vladko.zdravkovski@…>
Branches:
master
Children:
bf9486e
Parents:
df62f68
Message:

updated git ignore

Files:
2 deleted
1 edited

Legend:

Unmodified
Added
Removed
  • .gitignore

    rdf62f68 r55149cd  
    11.idea
     2
     3back_end/*.java.hsp
     4back_end/*.sonarj
     5back_end/*.sw*
     6back_end/.DS_Store
     7back_end/.settings
     8back_end/.springBeans
     9back_end/bin
     10back_end/build.sh
     11back_end/integration-repo
     12back_end/ivy-cache
     13back_end/jxl.log
     14back_end/jmx.log
     15back_end/derby.log
     16back_end/spring-test/test-output/
     17back_end/*.gradle
     18back_end/argfile*
     19back_end/activemq-data/
     20
     21back_end/classes/
     22back_end/build
     23back_end/buildSrc/build
     24back_end/spring-*/build
     25back_end/spring-core/kotlin-coroutines/build
     26back_end/framework-bom/build
     27back_end/integration-tests/build
     28back_end/src/asciidoc/build
     29back_end/target/
     30
     31# Eclipse artifacts, including WTP generated manifests
     32back_end/.classpath
     33back_end/.project
     34back_end/spring-*/src/main/java/META-INF/MANIFEST.MF
     35
     36# IDEA artifacts and output dirs
     37back_end/*.iml
     38back_end/*.ipr
     39back_end/*.iws
     40back_end/.idea
     41back_end/out
     42back_end/test-output
     43back_end/atlassian-ide-plugin.xml
     44back_end/.gradletasknamecache
     45
     46# Client
    247
    348# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
    449
    550# dependencies
    6 /node_modules
    7 /.pnp
    8 .pnp.js
     51client_app/node_modules
     52client_app/.pnp
     53client_app/.pnp.js
    954
    1055# testing
    11 /coverage
     56client_app/coverage
    1257
    1358# production
    14 /build
     59client_app/build
    1560
    1661# misc
    17 .DS_Store
    18 .env.local
    19 .env.development.local
    20 .env.test.local
    21 .env.production.local
     62client_app/.DS_Store
     63client_app/.env.local
     64client_app/.env.development.local
     65client_app/.env.test.local
     66client_app/.env.production.local
    2267
    23 npm-debug.log*
    24 yarn-debug.log*
    25 yarn-error.log*
     68client_app/npm-debug.log*
     69client_app/yarn-debug.log*
     70client_app/yarn-error.log*
    2671
    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
     72client_app/.eslintcache
Note: See TracChangeset for help on using the changeset viewer.