# dawg **Repository Path**: mirrors_mozilla/dawg ## Basic Information - **Project Name**: dawg - **Description**: Data Access Workgroups (DAWG) aggregates workgroup definition artifacts into an unified view. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-07-23 - **Last Updated**: 2026-07-04 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ![Data Access Workgroups](./src/assets/dawg.png) ## Recommended IDE Setup [VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). ## Type Support for `.vue` Imports in TS TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) to make the TypeScript language service aware of `.vue` types. ## Customize configuration See [Vite Configuration Reference](https://vitejs.dev/config/). ## Project Setup ```sh npm install ``` ### Compile and Hot-Reload for Development ```sh npm run dev ``` ### Use Production Assets in Dev Testing (`workgroup:mozilla-confidential` metadata) > [!WARNING] > Do not commit these files ```sh gcloud storage cp gs://protosaur-stage-iap-static-website/dawg/workgroups.ndjson public/ gcloud storage cp gs://protosaur-stage-iap-static-website/dawg/subgroup_members.ndjson public/ VITE_USE_PROD_DATA=true npm run dev ``` ### Lint with [ESLint](https://eslint.org/) ```sh npm run lint ``` ### Testing Run all test concurrently ```sh npm run test ``` ### Run Type Tests/Checking ```sh npm run test:types ``` #### Run Unit Tests with [Vitetest](https://vitest.dev/) ```sh npm run test:unit ``` #### Run End-to-End Tests with [Playwright](https://playwright.dev) ```sh # Install browsers for the first run npx playwright install # Runs the end-to-end tests npm run test:e2e # Runs the tests in debug mode npm run test:e2e -- --debug # Runs the e2e tests w/ CI configuration CI=true npm run test:e2e ``` ### Compile and Minify for Production ```sh npm run build ```