Creating the ATAT database requires a separate connection to one of the default Postgres databases, like `postgres`. This updates the scripts and secrets-tool command to handle creating the database. It also removes database creation from Terraform and updates the documentation.
33 lines
503 B
Plaintext
33 lines
503 B
Plaintext
# Files to exclude from COPY and ADD commands when
|
|
# building a docker image from this directory
|
|
|
|
# Exclude Docker build related files
|
|
Dockerfile
|
|
Dockerfile.nginx
|
|
.dockerignore
|
|
docker-compose.yml
|
|
|
|
# Exclude the git directory and gitignore file
|
|
.git
|
|
.gitignore
|
|
|
|
# Skip any existing logs
|
|
log/*
|
|
|
|
# Skip LICENSE, README, etc.
|
|
LICENSE
|
|
*.md
|
|
|
|
# Skip envrc
|
|
.envrc
|
|
|
|
# Skip terraform
|
|
terraform
|
|
|
|
# Skip kubernetes and Docker config stuff
|
|
deploy
|
|
|
|
# exclude build artifacts and docker directories
|
|
.venv
|
|
node_modules
|