Skip to content

Commit

Permalink
Add markdown files to prettier ignore list
Browse files Browse the repository at this point in the history
After configuring prettier to use an indent of four spaces for Markdown
files it is adding a four space indent after the "-" character in
bulleted lists (see prettier/prettier#5019).
For now configure prettier to ignore Markdown files altogether to avoid
incorrect formatting changes.
  • Loading branch information
djjuhasz committed Aug 21, 2024
1 parent 12bb998 commit 3a58a8c
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 18 deletions.
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.md
36 changes: 18 additions & 18 deletions docs/src/dev-manual/archivematica.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,44 +24,44 @@ inside the cluster, and they are not tracked in the repository.

- Location: `hack/kube/overlays/dev-am/.am.secret`
- **Contents to check:**
- AM API address (e.g.,`http://host.k3d.internal:62080`)
- User credentials (`user=test`, `api_key=test`)
- SFTP configuration
details (`sftp_host=`, `sftp_port=`, `sftp_user=`, `sftp_remote_dir=`,
`sftp_private_key_passphrase=`).
- Archivematica Storage Service location details (`amss_url=`,
`amss_user=`, `amss_api_key=`, `amss_location_id=`). These details are
used by the _mysql-create-amss-location-job.yaml_ job to add an AMSS
location to the _enduro_storage_ database, and allow AIP download from the
Enduro Dashboard.
- AM API address (e.g.,`http://host.k3d.internal:62080`)
- User credentials (`user=test`, `api_key=test`)
- SFTP configuration
details (`sftp_host=`, `sftp_port=`, `sftp_user=`, `sftp_remote_dir=`,
`sftp_private_key_passphrase=`).
- Archivematica Storage Service location details (`amss_url=`,
`amss_user=`, `amss_api_key=`, `amss_location_id=`). These details are
used by the *mysql-create-amss-location-job.yaml* job to add an AMSS
location to the *enduro_storage* database, and allow AIP download from the
Enduro Dashboard.

#### `.id_ed25519.secret`

- Location: `hack/kube/overlays/dev-am/.id_ed25519.secret`
- **Contents to check:**
- SSH private key (Ensure it starts with `-----BEGIN
OPENSSH PRIVATE KEY-----` and ends with `-----END
OPENSSH PRIVATE KEY-----`)
- SSH private key (Ensure it starts with `-----BEGIN
OPENSSH PRIVATE KEY-----` and ends with `-----END
OPENSSH PRIVATE KEY-----`)

#### `.known_hosts.secret`

- Location: `hack/kube/overlays/dev-am/.known_hosts.secret`
- **Contents to check:**
- Known hosts entries (Look for entries starting with
`|1|` and containing `ssh-rsa`, `ecdsa-sha2-nistp256`,
`ssh-ed25519` etc.)
- Known hosts entries (Look for entries starting with
`|1|` and containing `ssh-rsa`, `ecdsa-sha2-nistp256`,
`ssh-ed25519` etc.)

#### `.tilt.env`

- Location: `root/`
- **Contents to check:**
- `ENDURO_PRES_SYSTEM = "am"`
- `ENDURO_PRES_SYSTEM = "am"`

#### `enduro.toml`

- Location: `root/`
- **Contents to check:**
- `[preservation] taskQueue` variable must be set to "am"
- `[preservation] taskQueue` variable must be set to "am"

!!! note

Expand Down

0 comments on commit 3a58a8c

Please sign in to comment.