43 lines
772 B
YAML
43 lines
772 B
YAML
# Repository files
|
|
repository:
|
|
- .github/**
|
|
- .gitattributes
|
|
- .gitignore
|
|
- .eslintrc.yml
|
|
- ARCHITECTURE.md
|
|
- CONTRIBUTING.md
|
|
- LICENSE
|
|
- SECURITY.md
|
|
|
|
# Docker
|
|
docker:
|
|
- .dockerignore
|
|
- Dockerfile
|
|
|
|
# Metrics source code editions
|
|
core:
|
|
- source/app/metrics/**
|
|
- source/plugins/base/**
|
|
- source/plugins/core/**
|
|
action:
|
|
- source/app/action/**
|
|
web:
|
|
- source/app/web/**
|
|
metrics-insights:
|
|
- source/app/web/statics/about/**
|
|
plugins:
|
|
- source/plugins/**
|
|
templates:
|
|
- source/templates/**
|
|
templates-classic:
|
|
- source/templates/classic/**
|
|
templates-markdown:
|
|
- source/templates/markdown/**
|
|
templates-repository:
|
|
- source/templates/repository/**
|
|
tests:
|
|
- source/app/mocks/**
|
|
- tests/**
|
|
dependencies:
|
|
- package.json
|
|
- package-lock.json |