Skip to content

Commit d2577cf

Browse files
authored
Merge pull request #20 from cmeissner/community_files
Adapt community information
2 parents c4f0d1a + 4eb46dd commit d2577cf

File tree

7 files changed

+67
-17
lines changed

7 files changed

+67
-17
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,10 @@ Steps to reproduce the behavior:
1818
A clear and concise description of what you expected to happen.
1919

2020
**Versions:**
21-
- Ansible:
22-
- phpipam-ansible-modules
23-
- phpypam
21+
22+
- Ansible:
23+
- phpipam-ansible-modules
24+
- phpypam
2425

2526
**Additional context**
2627
Add any other context about the problem here.

CONTRIBUTING.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# How to contribute to phpipam-ansible-modules
2+
3+
## Did you found a bug
4+
5+
* Do not open Github issue it the bug concerns [{php}IPAM](https://github.com/phpipam/phpipam) and not the ansible modules.
6+
7+
* Make sure the bug is not already opened by another user.
8+
9+
* If you can't find an open issue which reflects your observed problem go ahead an [open a new bug](https://github.com/codeaffen/phpipam-ansible-modules/issues/new?assignees=&labels=bug&template=bug_report.md&title=).
10+
11+
* Provide as much information as mentioned in the bug report template.
12+
13+
## Did you wrote a patch for an open bug
14+
15+
* Open new pull request containing the patch.
16+
17+
* Provide a clear description which describes the problem and the solution. Link the existing bug to the PR.
18+
19+
## Do you want to add a new feature
20+
21+
* Make sure there isn't already a feature request.
22+
23+
* If you can't find an open feature request which describe your feature idea or parts of it feel free to [open a new feature request](https://github.com/codeaffen/phpipam-ansible-modules/issues/new?assignees=&labels=enhancement&template=feature_request.md&title=).
24+
25+
* Suggest your feature idea within the created feature request.
26+
27+
* Provide as much discribtion as possible to enable others to have a good understanding of what you are doing.
28+
29+
* Point out that you want to start to work on the new feature
30+
31+
## Do you wnat to contribute to documentation
32+
33+
* Write you documentation change.
34+
35+
* Open a PR with your change.
36+
37+
* Discuss with the team about your changes.
38+
39+
## Thank you for any contribution
40+
41+
We will thank you for heed the contribution guidelines and we encourage you to contribute and join the team.

README.md

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
# phpipam-ansible-modules
2-
3-
## work in progress
4-
5-
**This modules are still in development and not for production purpose. If we think you can use is in a more productive manner we will inform you.**
1+
# phpIPAM Ansible Modules
62

73
This collection provides modules to manage entities in a [phpIPAM](https://phpipam.net/). This is neighter a collection of roles nor playbooks. It provides modules to wrote your own roles and/or playbooks.
84

@@ -157,7 +153,7 @@ EXAMPLES:
157153

158154
### repository folder
159155

160-
A last option to read the docs is the [docs](docs) folder in this repository.
156+
A last option to read the docs is the docs folder in this repository.
161157

162158
## Dependencies
163159

docs/CONTRIBUTING.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../CONTRIBUTING.md

docs/conf.py

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919

2020
# -- Project information -----------------------------------------------------
2121

22-
project = u'phpipam-ansible-modules'
23-
copyright = u'2020, Christian Meißner'
24-
author = u'Christian Meißner'
22+
project = u'phpIPAM Ansible Modules'
23+
copyright = u'2020, codeaffen'
24+
author = u'codeaffen'
2525

2626
# The short X.Y version
2727
version = u''
@@ -39,8 +39,10 @@
3939
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
4040
# ones.
4141
extensions = [
42+
'recommonmark',
4243
'sphinx.ext.autodoc',
43-
'sphinx_ansible_theme',
44+
'sphinx.ext.intersphinx',
45+
'ansible_basic_sphinx_ext',
4446
]
4547

4648
# Add any paths that contain templates here, relative to this directory.
@@ -50,7 +52,10 @@
5052
# You can specify multiple suffix as a list of string:
5153
#
5254
# source_suffix = ['.rst', '.md']
53-
source_suffix = '.rst'
55+
source_suffix = {
56+
'.rst': 'restructuredtext',
57+
'.md': 'markdown',
58+
}
5459

5560
# The master toctree document.
5661
master_doc = 'index'
@@ -76,7 +81,7 @@
7681
# The theme to use for HTML and HTML Help pages. See the documentation for
7782
# a list of builtin themes.
7883
#
79-
html_theme = 'sphinx_ansible_theme'
84+
html_theme = 'sphinx_rtd_theme'
8085

8186
# Theme options are theme-specific and customize the look and feel of a theme
8287
# further. For a list of options available for each theme, see the

docs/index.rst

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
You can adapt this file completely to your liking, but it should at least
44
contain the root `toctree` directive.
55
6-
Welcome to phpipam-ansible-modules's documentation!
6+
Welcome to phpIPAM Ansible Module documentation!
77
===================================================
88

99
.. toctree::
@@ -14,6 +14,12 @@ Welcome to phpipam-ansible-modules's documentation!
1414
Changelog <CHANGELOG>
1515
plugins/index
1616

17+
.. toctree::
18+
:maxdepth: 2
19+
:caption: Developer documentation
20+
21+
Contributing <CONTRIBUTING>
22+
1723
Indices and tables
1824
==================
1925

docs/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
antsibull>=0.17.0
22
ansible-base>=2.10.0rc2
33
sphinx-rtd-theme
4-
sphinx-ansible-theme
4+
git+https://github.com/felixfontein/ansible-basic-sphinx-ext
55
recommonmark

0 commit comments

Comments
 (0)