Skip to content
This repository was archived by the owner on Oct 30, 2018. It is now read-only.

Commit b2b5cc0

Browse files
committed
Add basic top level files.
1 parent a099a3c commit b2b5cc0

File tree

4 files changed

+771
-0
lines changed

4 files changed

+771
-0
lines changed

.gitignore

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
# build products...
2+
*.py[co]
3+
build
4+
AUTHORS.TXT
5+
# Emacs backup files...
6+
*~
7+
.\#*
8+
# RPM stuff...
9+
MANIFEST
10+
dist
11+
rpm-build
12+
# Eclipse/PyDev stuff...
13+
.project
14+
.pydevproject
15+
# PyCharm stuff...
16+
.idea
17+
#IntelliJ IDEA stuff..
18+
*.iml
19+
# Mac OS X stuff...
20+
.DS_Store
21+
# manpage build stuff...
22+
docs/man/man3/*
23+
# Sublime stuff
24+
*.sublime-project
25+
*.sublime-workspace
26+
# docsite stuff...
27+
docsite/rst/modules_by_category.rst
28+
docsite/rst/list_of_*.rst
29+
docsite/rst/*_module.rst
30+
docsite/*.html
31+
docsite/_static/*.gif
32+
docsite/_static/*.png
33+
docsite/_static/websupport.js
34+
docsite/searchindex.js
35+
docsite/htmlout
36+
# deb building stuff...
37+
debian/
38+
deb-build
39+
# Vim swap files
40+
*.swp
41+
*.swo
42+
credentials.yml
43+
# test output
44+
.coverage
45+
results.xml
46+
coverage.xml
47+
/test/units/cover-html
48+
# Development
49+
/test/develop
50+
venv
51+
Vagrantfile
52+
.vagrant
53+
ansible.egg-info/

CONTRIBUTING.md

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
Welcome To Ansible GitHub
2+
=========================
3+
4+
Hi! Nice to see you here!
5+
6+
If you'd like to ask a question
7+
===============================
8+
9+
Please see [this web page ](http://docs.ansible.com/community.html) for community information, which includes pointers on how to ask questions on the [mailing lists](http://docs.ansible.com/community.html#mailing-list-information) and IRC.
10+
11+
The github issue tracker is not the best place for questions for various reasons, but both IRC and the mailing list are very helpful places for those things, and that page has the pointers to those.
12+
13+
If you'd like to contribute code
14+
================================
15+
16+
Please see [this web page](http://docs.ansible.com/community.html) for information about the contribution process. Important license agreement information is also included on that page.
17+
18+
If you'd like to file a bug
19+
===========================
20+
21+
I'd also read the community page above, but in particular, make sure you copy [this issue template](https://github.com/ansible/ansible/blob/devel/ISSUE_TEMPLATE.md) into your ticket description. We have a friendly neighborhood bot that will remind you if you forget :) This template helps us organize tickets faster and prevents asking some repeated questions, so it's very helpful to us and we appreciate your help with it.
22+
23+
Also please make sure you are testing on the latest released version of Ansible or the development branch.
24+
25+
Thanks!
26+
27+
28+

0 commit comments

Comments
 (0)