e0c7337ff5
- Add package.json with scripts and dependencies for development, testing, and building. - Create Playwright configuration for end-to-end testing. - Add provisioning files for Grafana plugin setup. - Implement core application structure with routing and lazy-loaded components. - Develop pages (PageOne, PageTwo, PageThree, PageFour) with respective functionalities. - Create AppConfig component for plugin configuration with API settings. - Implement tests for App and AppConfig components. - Add utility functions for routing and test fixtures. - Include TypeScript configuration for the project. - Add logo and necessary assets for the application.
37 lines
341 B
Plaintext
37 lines
341 B
Plaintext
# Node.js dependencies
|
|
node_modules/
|
|
dist/
|
|
build/
|
|
.env
|
|
.env.local
|
|
|
|
# Go build artifacts
|
|
*.exe
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
*.test
|
|
*.out
|
|
*.log
|
|
|
|
# Mage build output
|
|
mage_output/
|
|
bin/
|
|
pkg/
|
|
|
|
# OS files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# IDE/editor files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
|
|
# Grafana plugin dev files
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
coverage/
|