-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Implement config template prototype
Signed-off-by: 林博仁(Buo-ren Lin) <[email protected]>
- Loading branch information
Showing
3 changed files
with
45 additions
and
0 deletions.
There are no files selected for viewing
17 changes: 17 additions & 0 deletions
17
LICENSES/LicenseRef-Apache-2.0-If-Not-Used-In-Template-Projects.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# The Apache-2.0-If-Not-Used-In-Template-Projects pseudo license | ||
|
||
Assets that are declared as either licensed under [the 4.0 International | ||
version of the Creative Commons Attribution-ShareAlike license](https://creativecommons.org/licenses/by-sa/4.0/) | ||
or this pseudo license can be licensed otherwise under [the 2.0 version | ||
of the Apache license](https://www.apache.org/licenses/LICENSE-2.0) _if_ | ||
it is used to instantiate/refactor a project based on it rather than | ||
using it in the making of another template project. This allows | ||
re-licensing the project assets to your liking in your non-template | ||
projects with only a legal conformance requirement of attributing this | ||
product somewhere in your project/product credits/acknowledgment/copyright | ||
notice documentation/user interface. | ||
|
||
Note that some assets that are not declared using this pseudo license | ||
may also allow re-licensing as the declared license does not impose such | ||
restrictions in the first place, refer the individual license terms for | ||
details. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Ansible-lint configuration file | ||
# | ||
# References: | ||
# | ||
# * Configuration - Ansible Lint Documentation | ||
# https://ansible.readthedocs.io/projects/lint/configuring/ | ||
# | ||
# Copyright 2024 The Common Ansible Project Template Contributors <https://github.com/the-common/ansible-project-template/graphs/contributors> | ||
# SPDX-License-Identifier: CC-BY-SA-4.0 OR LicenseRef-Apache-2.0-If-Not-Used-In-Template-Projects | ||
|
||
# Profiles - Ansible Lint Documentation | ||
# https://ansible.readthedocs.io/projects/lint/profiles/ | ||
profile: production | ||
|
||
exclude_paths: | ||
# Implicit unless exclude_paths is defined in config | ||
- .cache/ | ||
|
||
# Don't check external Ansible resources | ||
- playbooks/roles/*/ | ||
- playbooks/collections/*/ |