Rename config.yml

This commit is contained in:
Andras Schmelczer 2025-03-24 21:57:26 +00:00
parent a6fd0f1dd7
commit 958af89116
No known key found for this signature in database
GPG key ID: FC8F2C3D3D1A718C
4 changed files with 9 additions and 3 deletions

View file

@ -38,7 +38,7 @@ jobs:
- name: E2E tests
run: |
cd backend
RUST_BACKTRACE=1 cargo run -p sync_server &
RUST_BACKTRACE=1 cargo run -p sync_server config-e2e.yml &
cd ..
scripts/update-api-types.sh

View file

@ -3,4 +3,4 @@ Dockerfile
.dockerignore
databases
sync_lib/pkg
config.yml
*.yml

View file

@ -9,5 +9,11 @@ users:
user_tokens:
- name: admin
token: test-token-change-me
vaults:
all: true
- name: test
token: other-test-token
vaults:
allowed:
- default

View file

@ -27,7 +27,7 @@ async function runTest({
const initialSettings: Partial<SyncSettings> = {
isSyncEnabled: true,
token: "test-token-change-me", // same as in backend/config.yml
token: "test-token-change-me", // same as in backend/config-e2e.yml
vaultName: uuidv4(),
syncConcurrency: concurrency,
remoteUri: "http://localhost:3000"