dh_demo

DreamHanks demo project
git clone git://git.lair.cx/dh_demo
Log | Files | Refs | README

.gitignore (2073B)


      1 # See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
      2 
      3 # dependencies
      4 /node_modules
      5 /.pnp
      6 .pnp.js
      7 .yarn/*
      8 !.yarn/releases
      9 !.yarn/patches
     10 !.yarn/plugins
     11 !.yarn/sdks
     12 !.yarn/versions
     13 !.yarn/cache
     14 
     15 # testing
     16 /coverage
     17 
     18 # next.js
     19 /.next/
     20 /out/
     21 
     22 # production
     23 /build
     24 
     25 # misc
     26 .DS_Store
     27 *.pem
     28 
     29 # debug
     30 npm-debug.log*
     31 yarn-debug.log*
     32 yarn-error.log*
     33 .pnpm-debug.log*
     34 
     35 # local env files
     36 .env*.local
     37 
     38 # vercel
     39 .vercel
     40 
     41 # typescript
     42 *.tsbuildinfo
     43 next-env.d.ts
     44 
     45 # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
     46 # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
     47 
     48 # User-specific stuff
     49 .idea/**/workspace.xml
     50 .idea/**/tasks.xml
     51 .idea/**/usage.statistics.xml
     52 .idea/**/dictionaries
     53 .idea/**/shelf
     54 
     55 # AWS User-specific
     56 .idea/**/aws.xml
     57 
     58 # Generated files
     59 .idea/**/contentModel.xml
     60 
     61 # Sensitive or high-churn files
     62 .idea/**/dataSources/
     63 .idea/**/dataSources.ids
     64 .idea/**/dataSources.local.xml
     65 .idea/**/sqlDataSources.xml
     66 .idea/**/dynamic.xml
     67 .idea/**/uiDesigner.xml
     68 .idea/**/dbnavigator.xml
     69 
     70 # Gradle
     71 .idea/**/gradle.xml
     72 .idea/**/libraries
     73 
     74 # Gradle and Maven with auto-import
     75 # When using Gradle or Maven with auto-import, you should exclude module files,
     76 # since they will be recreated, and may cause churn.  Uncomment if using
     77 # auto-import.
     78 # .idea/artifacts
     79 # .idea/compiler.xml
     80 # .idea/jarRepositories.xml
     81 # .idea/modules.xml
     82 # .idea/*.iml
     83 # .idea/modules
     84 # *.iml
     85 # *.ipr
     86 
     87 # CMake
     88 cmake-build-*/
     89 
     90 # Mongo Explorer plugin
     91 .idea/**/mongoSettings.xml
     92 
     93 # File-based project format
     94 *.iws
     95 
     96 # IntelliJ
     97 out/
     98 
     99 # mpeltonen/sbt-idea plugin
    100 .idea_modules/
    101 
    102 # JIRA plugin
    103 atlassian-ide-plugin.xml
    104 
    105 # Cursive Clojure plugin
    106 .idea/replstate.xml
    107 
    108 # SonarLint plugin
    109 .idea/sonarlint/
    110 
    111 # Crashlytics plugin (for Android Studio and IntelliJ)
    112 com_crashlytics_export_strings.xml
    113 crashlytics.properties
    114 crashlytics-build.properties
    115 fabric.properties
    116 
    117 # Editor-based Rest Client
    118 .idea/httpRequests
    119 
    120 # Android studio 3.1+ serialized cache file
    121 .idea/caches/build_file_checksums.ser