This sets up the foundational structure for a .NET Core 6 / React project, demonstrating common architectural patterns, Docker integration, and key Strata libraries for API, data access (EF Core), background jobs (Hangfire), real-time communication (SignalR), and various frontend UI components.
16 lines
618 B
Bash
16 lines
618 B
Bash
//Create different environment.json files for each environment you want to run the tests. This file works as a template.
|
|
//Example : cypress.development.json, cypress.local.json
|
|
|
|
{
|
|
"baseUrl": "https://kitchensink.dev.stratanetwork.net",
|
|
"env": {
|
|
"username": "memetest",
|
|
"password": "Password1",
|
|
"orgPin": "0436",
|
|
"dbguid": "b8018250-af34-403e-bdcc-1770714042b2",
|
|
"clientId": "StrataUI",
|
|
//update the value of environment, where you want to run the tests. Ex: development, local.
|
|
//This is just for reference purpose
|
|
"environment": ""
|
|
}
|
|
} |