-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
NII Gakunin Cloud
committed
May 19, 2023
1 parent
2f7278d
commit ef39eff
Showing
128 changed files
with
23,577 additions
and
43,911 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
version: '3.8' | ||
services: | ||
sscfg-ui: | ||
image: harbor.vcloud.nii.ac.jp/sinetstream/sscfg-ui:${IMG_TAG} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": [ | ||
"config:base", | ||
"group:allNonMajor" | ||
], | ||
"prHourlyLimit": 0, | ||
"prConcurrentLimit": 0, | ||
"enabledManagers": ["docker-compose"], | ||
"separateMultipleMajor": true, | ||
"timezone": "Asia/Tokyo", | ||
"schedule": [ | ||
"before 11am on friday" | ||
], | ||
"assignees": ["suri_endo"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
import {defineConfig} from 'cypress'; | ||
|
||
function generatePassword(length = 16) { | ||
let ret = ''; | ||
const letters = [...Array(10)].map((x, i) => String.fromCharCode(i + 48)).concat( | ||
[...Array(26)].map((x, i) => String.fromCharCode(i + 65)), | ||
[...Array(26)].map((x, i) => String.fromCharCode(i + 97)), | ||
); | ||
for (let i = 0; i < length; i += 1) { | ||
ret += letters[Math.floor(Math.random() * letters.length)]; | ||
} | ||
return ret; | ||
} | ||
|
||
const password = generatePassword(); | ||
const env = process.env.VUE_APP_FEATHERS_URL != null | ||
? { | ||
password, | ||
rest_url: process.env.VUE_APP_FEATHERS_URL, | ||
} | ||
: { password }; | ||
|
||
export default defineConfig({ | ||
e2e: { | ||
specPattern: 'tests/e2e/specs/*.ts', | ||
supportFile: 'tests/e2e/support/index.ts', | ||
setupNodeEvents(on, config) { | ||
require('@cypress/code-coverage/task')(on, config); | ||
return config | ||
}, | ||
}, | ||
downloadsFolder: 'tests/e2e/downloads', | ||
fixturesFolder: 'tests/e2e/fixtures', | ||
screenshotsFolder: 'tests/e2e/screenshots', | ||
videosFolder: 'tests/e2e/videos', | ||
"video": false, | ||
"env": { | ||
"admin": "admin", | ||
"admin_password": "", | ||
"username": "test-user", | ||
"email": "[email protected]", | ||
"display_name": "test user", | ||
"codeCoverageTasksRegistered": true, | ||
...env, | ||
}, | ||
"retries": { | ||
"runMode": 2, | ||
"openMode": 0 | ||
}, | ||
"reporter": "cypress-multi-reporters", | ||
"reporterOptions": { | ||
"configFile": "reporter-config.json" | ||
} | ||
}); |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.