Update admin theme/layout and refresh README details.

Align the project baseline with the latest admin interface styling and layout structure while documenting setup and usage updates in README.
This commit is contained in:
vlad
2026-07-14 17:12:28 +03:00
commit 86cc3fa541
278 changed files with 19416 additions and 0 deletions
+48
View File
@@ -0,0 +1,48 @@
import { defineConfig } from "@playwright/test";
const webPort = process.env.E2E_WEB_PORT ?? "5175";
const webUrl = process.env.E2E_BASE_URL ?? `http://127.0.0.1:${webPort}`;
const apiPort = process.env.E2E_API_PORT ?? "8001";
const apiUrl = process.env.E2E_API_URL ?? `http://127.0.0.1:${apiPort}`;
const startApi = process.env.E2E_START_API !== "false";
export default defineConfig({
testDir: "./e2e",
retries: process.env.CI ? 1 : 0,
workers: 1,
webServer: startApi
? [
{
command: "python scripts/start_e2e_api.py",
cwd: "../api",
url: `${apiUrl}/api/v1/health`,
reuseExistingServer: !process.env.CI,
timeout: 120_000,
env: {
E2E_API_PORT: apiPort,
E2E_WEB_PORT: webPort
}
},
{
command: `npx vite --host 127.0.0.1 --port ${webPort}`,
url: webUrl,
reuseExistingServer: !process.env.CI,
env: {
VITE_USE_API_PROXY: "true",
VITE_API_URL: apiUrl
}
}
]
: {
command: `npx vite --host 127.0.0.1 --port ${webPort}`,
url: webUrl,
reuseExistingServer: !process.env.CI
},
use: {
baseURL: webUrl,
trace: "on-first-retry",
video: "on-first-retry"
},
projects: [{ name: "chromium", use: { browserName: "chromium" } }]
});