Skip to content

Commit

Permalink
Merge pull request #3 from mission-apprentissage/feat/lauchPreview
Browse files Browse the repository at this point in the history
feat: cosmetic
  • Loading branch information
antoinebigard authored Mar 15, 2024
2 parents f31bd46 + 42a5e62 commit e96f443
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bin/scripts/seed-apply.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
4 changes: 2 additions & 2 deletions .infra/files/configs/mongodb/seed.gpg
Git LFS file not shown
2 changes: 2 additions & 0 deletions .talismanrc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
22 changes: 22 additions & 0 deletions .vscode/terminals.json
Original file line number Diff line number Diff line change
@@ -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"
}
]
}

0 comments on commit e96f443

Please sign in to comment.