├── .github └── pull_request_template.md ├── .gitignore ├── LICENCE.txt ├── README.md ├── assets └── logo.png └── docs ├── development ├── automated-testing.md ├── ci-deployment-workflow.md ├── code-reviews.md ├── coding-standards.md ├── configuration-management.md ├── content-architecture.md ├── dependency-management-and-patching.md ├── development-workflow.md ├── feature-development.md ├── module-update-policy.md ├── release-workflow.md ├── testing.md ├── third-party │ ├── drone.md │ └── drupal │ │ ├── forms.md │ │ ├── index.md │ │ ├── routing-sytem.md │ │ └── services-dependency-injection.md └── tooling.md ├── initiative ├── code-of-conduct.md ├── contribution-workflow.md ├── how-to-contribute.md └── release-cycle.md ├── openeuropa-components.md ├── starting ├── repository-scaffolding.md └── solution-definition.md └── templates ├── issue-template.md └── pull-request-template.md /.github/pull_request_template.md: -------------------------------------------------------------------------------- 1 | ../docs/templates/pull-request-template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeuropa/documentation/HEAD/LICENCE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeuropa/documentation/HEAD/README.md -------------------------------------------------------------------------------- /assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeuropa/documentation/HEAD/assets/logo.png -------------------------------------------------------------------------------- /docs/development/automated-testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeuropa/documentation/HEAD/docs/development/automated-testing.md -------------------------------------------------------------------------------- /docs/development/ci-deployment-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeuropa/documentation/HEAD/docs/development/ci-deployment-workflow.md -------------------------------------------------------------------------------- /docs/development/code-reviews.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeuropa/documentation/HEAD/docs/development/code-reviews.md -------------------------------------------------------------------------------- /docs/development/coding-standards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeuropa/documentation/HEAD/docs/development/coding-standards.md -------------------------------------------------------------------------------- /docs/development/configuration-management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeuropa/documentation/HEAD/docs/development/configuration-management.md -------------------------------------------------------------------------------- /docs/development/content-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeuropa/documentation/HEAD/docs/development/content-architecture.md -------------------------------------------------------------------------------- /docs/development/dependency-management-and-patching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeuropa/documentation/HEAD/docs/development/dependency-management-and-patching.md -------------------------------------------------------------------------------- /docs/development/development-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeuropa/documentation/HEAD/docs/development/development-workflow.md -------------------------------------------------------------------------------- /docs/development/feature-development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeuropa/documentation/HEAD/docs/development/feature-development.md -------------------------------------------------------------------------------- /docs/development/module-update-policy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeuropa/documentation/HEAD/docs/development/module-update-policy.md -------------------------------------------------------------------------------- /docs/development/release-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeuropa/documentation/HEAD/docs/development/release-workflow.md -------------------------------------------------------------------------------- /docs/development/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeuropa/documentation/HEAD/docs/development/testing.md -------------------------------------------------------------------------------- /docs/development/third-party/drone.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeuropa/documentation/HEAD/docs/development/third-party/drone.md -------------------------------------------------------------------------------- /docs/development/third-party/drupal/forms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeuropa/documentation/HEAD/docs/development/third-party/drupal/forms.md -------------------------------------------------------------------------------- /docs/development/third-party/drupal/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeuropa/documentation/HEAD/docs/development/third-party/drupal/index.md -------------------------------------------------------------------------------- /docs/development/third-party/drupal/routing-sytem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeuropa/documentation/HEAD/docs/development/third-party/drupal/routing-sytem.md -------------------------------------------------------------------------------- /docs/development/third-party/drupal/services-dependency-injection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeuropa/documentation/HEAD/docs/development/third-party/drupal/services-dependency-injection.md -------------------------------------------------------------------------------- /docs/development/tooling.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeuropa/documentation/HEAD/docs/development/tooling.md -------------------------------------------------------------------------------- /docs/initiative/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeuropa/documentation/HEAD/docs/initiative/code-of-conduct.md -------------------------------------------------------------------------------- /docs/initiative/contribution-workflow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeuropa/documentation/HEAD/docs/initiative/contribution-workflow.md -------------------------------------------------------------------------------- /docs/initiative/how-to-contribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeuropa/documentation/HEAD/docs/initiative/how-to-contribute.md -------------------------------------------------------------------------------- /docs/initiative/release-cycle.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeuropa/documentation/HEAD/docs/initiative/release-cycle.md -------------------------------------------------------------------------------- /docs/openeuropa-components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeuropa/documentation/HEAD/docs/openeuropa-components.md -------------------------------------------------------------------------------- /docs/starting/repository-scaffolding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeuropa/documentation/HEAD/docs/starting/repository-scaffolding.md -------------------------------------------------------------------------------- /docs/starting/solution-definition.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeuropa/documentation/HEAD/docs/starting/solution-definition.md -------------------------------------------------------------------------------- /docs/templates/issue-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeuropa/documentation/HEAD/docs/templates/issue-template.md -------------------------------------------------------------------------------- /docs/templates/pull-request-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openeuropa/documentation/HEAD/docs/templates/pull-request-template.md --------------------------------------------------------------------------------