enso/.gitignore
Michał Wawrzyniec Urbańczyk a4f56e92aa
Custom Windows Installer & Uninstaller (#9815)
This PR introduces a new installer and uninstaller for the Windows platform.

Both are written in Rust and compiled to a single executable. The executable has no dependencies (other than what is included in the Windows), links the C++ runtime statically if needed.

The change is motivated by numerous issues with with the `electron-builder`-generated installers. The new installer should behave better, not have issues with long paths and unblock the `electron-builder` upgrade (which will significantly simplify the workflow definitions).

To build an installer, one needs to provide the unpacked application (generated by `electron-builder`) and the `electron-builder` configuration (with a few minor extensions). Code signing is also supported.
2024-05-07 16:22:11 +00:00

175 lines
2.3 KiB
Plaintext

#############
## GraalVM ##
#############
graal_dumps
#########
## JVM ##
#########
graal_dumps/
target/
*.class
*.log
.java-version
##########
## Rust ##
##########
**/*.rs.bk
wasm-pack.log
generated/
/target
/build/rust/target/
/rust-analyzer-target
###########
## Scala ##
###########
.metals/
############
## NodeJS ##
############
node_modules/
############
## System ##
############
.DS_Store
############
## Images ##
############
*.jpg
*.jpeg
*.bmp
*.psd
######################
## Tooling Specific ##
######################
!.idea
.idea/*
!.idea/runConfigurations/
!.vscode
.vscode/*
!.vs
.vs/*
.metals/
*.swp
.projections.json
.nvmrc
*.iml
.enso-sources*
.metals
tools/performance/engine-benchmarks/generated_site
*.tsbuildinfo
############################
## Rendered Documentation ##
############################
javadoc/
scaladoc/
distribution/docs
distribution/docs-js
#######################
## Benchmark Reports ##
#######################
bench-report*.xml
##############
## Binaries ##
##############
/built-distribution/
/enso
/project-manager
/enso.exp
/enso.lib
*.dll
*.exe
*.pdb
*.so
*.jar
#########
## IDE ##
#########
.editorconfig
.bloop/
.bsp/
project/metals.sbt
/build.json
/app/ide-desktop/lib/client/electron-builder-config.json
# Resources fire generated build-time for Win installer/uninstaller.
/build/install/installer/archive.rc
/build/install/icon.rc
#################
## Build Cache ##
#################
build-cache/
##################
## Native Image ##
##################
*.build_artifacts.txt
/runner
######################
## Enso-Development ##
######################
dist/
distribution/lib/Standard/Examples/*/data/scratch_file
distribution/lib/Standard/Examples/*/data/image.png
distribution/editions
distribution/lib/Standard/Table/*/polyglot/
distribution/lib/Standard/Database/*/polyglot/
distribution/lib/Standard/Examples/*/data/spreadsheet.xls
distribution/lib/Standard/Examples/*/data/spreadsheet.xlsx
distribution/lib/*/*/*/manifest.yaml
# Resources that are downloaded during the build.
/lib/scala/pkg/src/main/resources/*
test/Google_Api_Test/data/secret.json
test/Database_Tests/data/redshift_credentials.json
/resources/
# Ignore test output folder
test-results
#################
## Enso-Caches ##
#################
*.ir
*.meta
.enso/
##################
## direnv cache ##
##################
.direnv