Rename config.yml
This commit is contained in:
parent
a6fd0f1dd7
commit
958af89116
4 changed files with 9 additions and 3 deletions
2
.github/workflows/e2e.yml
vendored
2
.github/workflows/e2e.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -3,4 +3,4 @@ Dockerfile
|
|||
.dockerignore
|
||||
databases
|
||||
sync_lib/pkg
|
||||
config.yml
|
||||
*.yml
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue