diff --git a/.bin/scripts/seed-apply.sh b/.bin/scripts/seed-apply.sh index b56ea85..dc5861f 100755 --- a/.bin/scripts/seed-apply.sh +++ b/.bin/scripts/seed-apply.sh @@ -3,7 +3,7 @@ set -euo pipefail if [ -z "${1:-}" ]; then - readonly TARGET_DB="mongodb://__system:password@localhost:27017/?authSource=local&directConnection=true" + readonly TARGET_DB="mongodb://__system:password@localhost:27017/contrat?authSource=local&directConnection=true" else readonly TARGET_DB="$1" shift diff --git a/.github/workflows/deploy_preview.yml b/.github/workflows/deploy_preview.yml index 5607c54..5a6802c 100644 --- a/.github/workflows/deploy_preview.yml +++ b/.github/workflows/deploy_preview.yml @@ -76,7 +76,7 @@ jobs: IdentityFile ~/.ssh/github_actions - name: Create vault pwd file - run: echo ${{ secrets.VAULT_PWD }} > .infra/.vault_pwd.txt + run: echo "${{ secrets.VAULT_PWD }}" > .infra/.vault_pwd.txt - name: Install jmespath run: | diff --git a/.infra/files/configs/mongodb/seed.gpg b/.infra/files/configs/mongodb/seed.gpg index 84fdcb0..232f831 100644 --- a/.infra/files/configs/mongodb/seed.gpg +++ b/.infra/files/configs/mongodb/seed.gpg @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c1e29814886ec10fd9eaca48448c88199ea0187cddd0cd628f84a12b01c20709 -size 3480 +oid sha256:988b46c23bb43acba2321dc1e19f9d5c2e54eebe6d43e2f81876379982130359 +size 3007 diff --git a/.talismanrc b/.talismanrc index 683d5ea..1321294 100644 --- a/.talismanrc +++ b/.talismanrc @@ -9,6 +9,8 @@ fileignoreconfig: checksum: 3b78c6c25fa45ef557ba7e10d27cb58233bfbbf995c0346477ddfaf980165972 - filename: .infra/files/configs/mailpit/auth checksum: 23b23d13d722d209d16c8c3f91cecf56eaff968d1894f7c72f1af33ff3006c69 +- filename: .infra/files/configs/mongodb/seed.gpg + checksum: 1b1e81c2812b59898649bd6c46d3299275f9593703847e58590d46ec7eb405cc - filename: .infra/files/scripts/seed.sh checksum: a673a8f706cb90f2f5c9f98981b06ce95c566e67e2bb4a6323d6b1bdb8ef0233 - filename: .infra/vault/vault.yml diff --git a/.vscode/terminals.json b/.vscode/terminals.json new file mode 100644 index 0000000..86311cb --- /dev/null +++ b/.vscode/terminals.json @@ -0,0 +1,22 @@ +{ + "autorun": false, + "terminals": [ + { + "name": "Server", + "focus": true, + "description": "This run the server", + "commands": ["yarn services:start", "yarn server:dev"] + }, + { + "name": "Ui", + "description": "This run the ui", + "command": "yarn workspace ui dev" + }, + { + "name": "Cli", + "description": "Cli", + "execute": false, + "command": "yarn cli" + } + ] +}