In the past it was always useful to have meta data within regards to the SHA and build date/time. This adds in two new env vars that are written to disk as flat files and then exported to environment variables when the container starts up. This motivation comes from this comment: https://github.com/forem/forem/pull/9987#discussion_r476123829
62 lines
882 B
Text
62 lines
882 B
Text
.dockerignore
|
|
.gitignore
|
|
logs/
|
|
tmp/
|
|
node_modules/
|
|
|
|
##################################
|
|
#
|
|
# rest is COPIED from .gitignore
|
|
#
|
|
##################################
|
|
|
|
# Ignore bundler config.
|
|
/.bundle
|
|
vendor/bundle
|
|
|
|
# Ignore all logfiles and tempfiles.
|
|
/log/*
|
|
!/log/.keep
|
|
/tmp
|
|
.DS_Store
|
|
.swp
|
|
.approvals
|
|
.torus.json
|
|
coverage
|
|
/tags
|
|
|
|
# Ignore public uploads
|
|
/public/uploads/*
|
|
/public/c/*
|
|
/public/i/*
|
|
/public/assets/*
|
|
|
|
# Ignore node_modules
|
|
node_modules/
|
|
|
|
# Generated js bundles
|
|
/app/assets/javascripts/generated/*
|
|
latest.dump
|
|
.byebug_history
|
|
.gitdocs_build/
|
|
|
|
# Ignore application configuration
|
|
/public/packs
|
|
/public/packs-test
|
|
/node_modules
|
|
|
|
# Ignore storybook static site generation
|
|
storybook-static/
|
|
yarn-error.log
|
|
|
|
# Ignore package-lock.json because we use yarn
|
|
package-lock.json
|
|
|
|
#Jetbrains Tools
|
|
.idea/
|
|
|
|
#sitemap
|
|
/public/sitemap.xml.gz
|
|
|
|
# Development container gem storage location
|
|
.gems
|