Skip to content
Snippets Groups Projects
Select Git revision
  • cc8081121c325da872efde5add2303c6e060ca72
  • develop default
  • master protected
3 results

.gitignore

Blame
  • .gitignore 2.94 KiB
    ### Angular ###
    ## Angular ##
    # compiled output
    /dist
    /tmp
    /app/**/*.js
    /app/**/*.js.map
    
    # dependencies
    /node_modules
    /bower_components
    
    # IDEs and editors
    /.idea
    
    # misc
    /.sass-cache
    /connect.lock
    /coverage/*
    /libpeerconnection.log
    npm-debug.log
    testem.log
    /typings
    
    # e2e
    /e2e/*.js
    /e2e/*.map
    
    #System Files
    .DS_Store
    
    ### Django ###
    *.log
    *.pot
    *.pyc
    __pycache__/
    local_settings.py
    db.sqlite3
    media
    
    # If your build process includes running collectstatic, then you probably don't need or want to include staticfiles/
    # in your Git repository. Update and uncomment the following line accordingly.
    # <django-project-name>/staticfiles/
    
    ### Python ###
    # Byte-compiled / optimized / DLL files
    *.py[cod]
    *$py.class
    
    # C extensions
    *.so
    
    # Distribution / packaging
    .Python
    build/
    develop-eggs/
    dist/
    downloads/
    eggs/
    .eggs/
    lib/
    lib64/
    parts/
    sdist/
    var/
    wheels/
    *.egg-info/
    .installed.cfg
    *.egg
    
    # PyInstaller
    #  Usually these files are written by a python script from a template
    #  before PyInstaller builds the exe, so as to inject date/other infos into it.
    *.manifest
    *.spec
    
    # Installer logs
    pip-log.txt
    pip-delete-this-directory.txt
    
    # Unit test / coverage reports
    htmlcov/
    .tox/
    .coverage
    .coverage.*
    .cache
    nosetests.xml
    coverage.xml
    *.cover
    .hypothesis/
    
    # Translations
    *.mo
    
    # Django stuff:
    
    # Flask stuff:
    instance/
    .webassets-cache
    
    # Scrapy stuff:
    .scrapy
    
    # Sphinx documentation
    docs/_build/
    
    # PyBuilder
    target/
    
    # Jupyter Notebook
    .ipynb_checkpoints
    
    # pyenv
    .python-version
    
    # celery beat schedule file
    celerybeat-schedule
    
    # SageMath parsed files
    *.sage.py
    
    # Environments
    .env
    .venv
    env/
    venv/
    ENV/
    env.bak/
    venv.bak/
    
    # Spyder project settings
    .spyderproject
    .spyproject
    
    # Rope project settings
    .ropeproject
    
    # mkdocs documentation
    /site
    
    # mypy
    .mypy_cache/
    
    ### WebStorm+all ###
    # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
    # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
    
    # User-specific stuff:
    .idea/**/workspace.xml
    .idea/**/tasks.xml
    .idea/dictionaries
    
    # Sensitive or high-churn files:
    .idea/**/dataSources/
    .idea/**/dataSources.ids
    .idea/**/dataSources.xml
    .idea/**/dataSources.local.xml
    .idea/**/sqlDataSources.xml
    .idea/**/dynamic.xml
    .idea/**/uiDesigner.xml
    
    # Gradle:
    .idea/**/gradle.xml
    .idea/**/libraries
    
    # CMake
    cmake-build-debug/
    
    # Mongo Explorer plugin:
    .idea/**/mongoSettings.xml
    
    ## File-based project format:
    *.iws
    
    ## Plugin-specific files:
    
    # IntelliJ
    /out/
    
    # mpeltonen/sbt-idea plugin
    .idea_modules/
    
    # JIRA plugin
    atlassian-ide-plugin.xml
    
    # Cursive Clojure plugin
    .idea/replstate.xml
    
    # Ruby plugin and RubyMine
    /.rakeTasks
    
    # Crashlytics plugin (for Android Studio and IntelliJ)
    com_crashlytics_export_strings.xml
    crashlytics.properties
    crashlytics-build.properties
    fabric.properties
    
    ### WebStorm+all Patch ###
    # Ignores the whole idea folder
    # See https://github.com/joeblau/gitignore.io/issues/186 and https://github.com/joeblau/gitignore.io/issues/360
    
    .idea/