Skip to content

Adding READMEs to all directories #584

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 22 commits into
base: sk/joss-publication
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/ISSUE_TEMPLATE/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
## 'ISSUE_TEMPLATE' Directory Contents

### Files
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not too sure about having each of the files listed for each README, feels like something that will get out of date very quickly but having a readme for the point of it and perhaps highlighting key files?

Might be worth chatting about it?


bug_report.yml

feature_request.yaml

voxl.yml

6 changes: 6 additions & 0 deletions .github/workflows/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
## 'workflows' Directory Contents

### Files

main.yml

24 changes: 24 additions & 0 deletions bin/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
## 'PIXL/bin' Directory Contents

<details>
<summary>
<h3> Subdirectories with links to the relevant README </h3>

</summary>

[linters](./linters/README.md)

</details>

<details>
<summary>
<h3> Files </h3>

</summary>

| **User docs** |
| :--- |
README.md

</details>

16 changes: 16 additions & 0 deletions bin/linters/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
A directory that contains the files used for linting.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
A directory that contains the files used for linting.
Custom linting


## 'PIXL/bin/linters' Directory Contents

<details>
<summary>
<h3> Files </h3>

</summary>

| **Code** | **User docs** |
| :--- | :--- |
| check_headers_exist.sh | README.md |

</details>

29 changes: 29 additions & 0 deletions cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,3 +150,32 @@ The CLI tests require a running instance of the `rabbitmq` service, for which we
pytest -vs tests #for all tests
pytest -vs tests/test_docker_commands.py #e.g., for particular tests
```

## 'PIXL/cli' Directory Contents

<details>
<summary>
<h3> Subdirectories with links to the relevant README </h3>

</summary>

[src](./src/README.md)

[tests](./tests/README.md)

</details>

<details>
<summary>
<h3> Files </h3>

</summary>

| **Configuration** | **User docs** |
| :--- | :--- |
| pyproject.toml | README.md |

</details>



26 changes: 26 additions & 0 deletions cli/src/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
This directory contains the source files for the PIXL commands line interface.

## 'PIXL/cli/src' Directory Contents

<details>
<summary>
<h3> Subdirectories with links to the relevant README </h3>

</summary>

[pixl_cli](./pixl_cli/README.md)

</details>

<details>
<summary>
<h3> Files </h3>

</summary>

| **User docs** |
| :--- |
README.md

</details>

22 changes: 22 additions & 0 deletions cli/src/pixl_cli/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
This directory contains the files necessary to create a command line instance of PIXL.

## 'PIXL/cli/src/pixl_cli' Directory Contents

<details>
<summary>
<h3> Files </h3>

</summary>

| **Code** | **User docs** |
| :--- | :--- |
| main.py | README.md |
| _config.py | |
| _database.py | |
| _docker_commands.py | |
| _io.py | |
| _message_processing.py | |
| __init__.py | |

</details>

28 changes: 27 additions & 1 deletion cli/tests/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,33 @@
# PIXL cli tests

Remove the db container and associated data
This directory contains the code for the tests of the PIXL command line interface.



In order to remove the db container and associated data after the tests have been run use the following command:

```bash
docker container rm pixl-test-db -v -f
```

## 'PIXL/cli/tests' Directory Contents

<details>
<summary>
<h3> Files </h3>

</summary>

| **Code** | **User docs** |
| :--- | :--- |
| conftest.py | README.md |
| test_check_env.py | |
| test_database.py | |
| test_docker_commands.py | |
| test_io.py | |
| test_messages_from_files.py | |
| test_message_processing.py | |
| test_populate.py | |

</details>

34 changes: 34 additions & 0 deletions docker/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
## 'PIXL/docker' Directory Contents

<details>
<summary>
<h3> Subdirectories with links to the relevant README </h3>

</summary>

[export-api](./export-api/README.md)

[hasher-api](./hasher-api/README.md)

[imaging-api](./imaging-api/README.md)

[orthanc-anon](./orthanc-anon/README.md)

[orthanc-raw](./orthanc-raw/README.md)

[postgres](./postgres/README.md)

</details>

<details>
<summary>
<h3> Files </h3>

</summary>

| **Configuration** | **User docs** | **Housekeeping** |
| :--- | :--- | :--- |
| common.env | README.md | .dockerignore |

</details>

14 changes: 14 additions & 0 deletions docker/hasher-api/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
## 'PIXL/docker/hasher-api' Directory Contents

<details>
<summary>
<h3> Files </h3>

</summary>

| **Configuration** | **User docs** |
| :--- | :--- |
| Dockerfile | README.md |

</details>

14 changes: 14 additions & 0 deletions docker/imaging-api/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
## 'PIXL/docker/imaging-api' Directory Contents

<details>
<summary>
<h3> Files </h3>

</summary>

| **Configuration** | **User docs** |
| :--- | :--- |
| Dockerfile | README.md |

</details>

14 changes: 14 additions & 0 deletions docker/orthanc-anon/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
## 'PIXL/docker/orthanc-anon' Directory Contents

<details>
<summary>
<h3> Files </h3>

</summary>

| **Configuration** | **User docs** |
| :--- | :--- |
| Dockerfile | README.md |

</details>

14 changes: 14 additions & 0 deletions docker/orthanc/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
## 'PIXL/docker/orthanc-raw' Directory Contents

<details>
<summary>
<h3> Files </h3>

</summary>

| **Configuration** | **User docs** |
| :--- | :--- |
| Dockerfile | README.md |

</details>

14 changes: 14 additions & 0 deletions docker/pixl-python/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
## 'PIXL/docker/export-api' Directory Contents

<details>
<summary>
<h3> Files </h3>

</summary>

| **Configuration** | **User docs** |
| :--- | :--- |
| Dockerfile | README.md |

</details>

14 changes: 14 additions & 0 deletions docker/postgres/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
## 'PIXL/docker/postgres' Directory Contents

<details>
<summary>
<h3> Files </h3>

</summary>

| **Configuration** | **User docs** |
| :--- | :--- |
| Dockerfile | README.md |

</details>

2 changes: 2 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
## 'PIXL/docs' Directory Contents


<details>
<summary>
<h3> Subdirectories with links to the relevant README </h3>
Expand All @@ -16,3 +17,4 @@

</details>


1 change: 1 addition & 0 deletions docs/design/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@

</details>


8 changes: 8 additions & 0 deletions docs/design/diagrams/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
## 'PIXL/docs/design/diagrams' Directory Contents

### Files

pixl-multi-project-config.drawio

pixl-multi-project-config.png

6 changes: 6 additions & 0 deletions docs/file_types/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
## 'PIXL/docs/file_types' Directory Contents

### Files

parquet_files.md

12 changes: 12 additions & 0 deletions docs/joss-publication/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
## 'PIXL/docs/joss-publication' Directory Contents

### Subdirectories

[figures](./figures/README.md)

### Files

paper.bib

paper.md

2 changes: 2 additions & 0 deletions docs/joss-publication/figures/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
## 'PIXL/docs/joss-publication/figures' Directory Contents

8 changes: 8 additions & 0 deletions docs/services/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
## 'PIXL/docs/services' Directory Contents

### Files

ftp-server.md

pixl_database.md

10 changes: 10 additions & 0 deletions docs/setup/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
## 'PIXL/docs/setup' Directory Contents

### Files

azure-keyvault.md

developer.md

uclh-infrastructure-setup.md

Loading
Loading