Skip to content
Merged
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
7 changes: 7 additions & 0 deletions .github/workflows/ci-compose-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Create .env files from examples
run: |
for f in $(find . -name "*.example" -not -path "./.git/*"); do
cp "$f" "${f%.example}"
done

- name: Validate Docker Compose file
run: docker compose -f compose.yaml config
- name: Check required metadata labels
Expand Down
25 changes: 19 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,16 +68,29 @@ All architectural metadata must be prefixed with `dome.`, acting as our namespac

To correctly configure the stack, you need to edit the following configuration files.

Please take a look at the provided samples and customize them for your own environment.
Please take a look at the provided examples and customize them for your own environment.

Inside every file, you will details for the parameters that you should customize for your environment.

- _**.env.desmos**_
- _**.env.dlt-adapter**_
- _**.secrets.desmos**_
- _**Caddyfile**_
- _**.env.desmos.example**_
- _**.env.dlt-adapter.example**_
- _**.secrets.desmos.example**_
- _**Caddyfile.example**_

Other env files should not be changed
Other files should not be changed

Please make a copy of the provided .example files before to customize them

| source file | destination file |
|-------------|------------------|
| .env.desmos.example | .env.desmos |
| .env.dlt-adapter-alastria.example | .env.dlt-adapter-alastria|
| .secrets.desmos.example | .secrets.desmos |
| .Caddyfile.example | .Caddyfile |

Once you have the working files, you can customize them.

You can also execure the script "setup.sh" to copy the working files from examples.


## Execution
Expand Down
Loading