Skip to content

Commit 9ede825

Browse files
jstrachanJenkins CI
authored andcommitted
added a little bit more branding and a contributing/community/faq site
1 parent c48177e commit 9ede825

File tree

3 files changed

+75
-9
lines changed

3 files changed

+75
-9
lines changed

Contributing.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# Contributing
2+
3+
We love contributions! We really need your help to [fabric8 more awesome](http://fabric8.io/), so please [join our community](#/site/doc/community.html)!
4+
5+
Many thanks to all of our [existing contributors](https://github.com/fabric8io/fabric8/graphs/contributors)! Why not dive in and help?
6+
7+
Here's some notes to help you get started:
8+
9+
## Getting Started
10+
11+
* Make sure you have a [GitHub account](https://github.com/signup/free) as you'll need it to submit issues, comments or pull requests.
12+
* Got any ideas for how we can improve fabric8? Please [submit an issue](https://github.com/fabric8io/fabric8/issues?state=open) with your thoughts. Constructive criticism is always greatly appreciated!
13+
* Fancy submitting a blog post, article or screencastwe can link to? Just [submit an issue](https://github.com/fabric8io/fabric8/issues?state=open) and we'll merge it into our website.
14+
* Search [our issue tracker](https://github.com/fabric8io/fabric8/issues?state=open) and see if there's been any ideas or issues reported for what you had in mind; if so please join the conversation in the comments.
15+
* Submit any issues, feature requests or improvement ideas [our issue tracker](https://github.com/fabric8io/fabric8/issues?state=open).
16+
* Clearly describe the issue including steps to reproduce when it is a bug.
17+
* Make sure you fill in the earliest version that you know has the issue.
18+
19+
### Fancy hacking some code?
20+
21+
* If you fancy working on some code, check out the these lists of issues:
22+
* [all open issues](https://github.com/fabric8io/fabric8/issues?state=open) if you fancy being more adventurous.
23+
24+
* To make code changes, fork the repository on GitHub then you can hack on the code. We love any contribution such as:
25+
* fixing typos
26+
* improving the documentation or embedded help
27+
* writing new test cases or improve existing ones
28+
* adding new features
29+
30+
## Submitting changes to fabric8
31+
32+
* Push your changes to your fork of the [fabric8 repository](https://github.com/fabric8io/fabric8).
33+
* Submit a pull request to the repository in the **fabric8io** organization.
34+
* If your change references an existing [issue](https://github.com/fabric8io/fabric8/issues?state=open) then use "fixes #123" in the commit message (using the correct issue number ;).
35+
36+
# Additional Resources
37+
38+
* [fabric8 FAQ](#/site/FAQ.md)
39+
* [General GitHub documentation](http://help.github.com/)
40+
* [GitHub create pull request documentation](hhttps://help.github.com/articles/creating-a-pull-request)
41+
* [join the fabric8 community](#/site/doc/community.html)
42+

FAQ.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
### General Questions
2+
3+
General questions on all things fabric8.
4+
5+
#### What is the license?
6+
7+
fabric8 uses the [Apache 2.0 License](http://www.apache.org/licenses/LICENSE-2.0.txt).
8+
9+
#### What does fabric8 do?
10+
11+
fabric8 (pronounced _fabricate_) lets you create and manage fabrics (or clusters) of applications, integrations and middleware.
12+
13+
### Problems/General Questions about using fabric8
14+

fabric8-site/src/main/webapp/vendor.js

Lines changed: 19 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,38 +28,38 @@
2828
return true;
2929
}
3030
},
31+
*/
3132
{
32-
"content": "FAQ",
33-
"title": "Frequently Asked Questions",
33+
"content": "User Guide",
34+
"title": "All the docs on using hawtio",
3435
"href": function () {
35-
return "#/site/FAQ.md";
36+
return "#/site/book/doc/index.md";
3637
},
3738
"isValid": function () {
3839
return true;
3940
}
4041
},
41-
*/
4242
{
43-
"content": "User Guide",
44-
"title": "All the docs on using hawtio",
43+
"content": "FAQ",
44+
"title": "Frequently Asked Questions",
4545
"href": function () {
46-
return "#/site/book/doc/index.md";
46+
return "#/site/FAQ.md";
4747
},
4848
"isValid": function () {
4949
return true;
5050
}
5151
},
52-
/*
5352
{
5453
"content": "Community",
5554
"title": "Come on in and join our community!",
5655
"href": function () {
57-
return "#/site/doc/Community.html";
56+
return "#/site/doc/community.html";
5857
},
5958
"isValid": function () {
6059
return true;
6160
}
6261
},
62+
/*
6363
{
6464
"content": "Developers",
6565
"title": "Resources for developers if you want to hack on hawtio or provide your own plugins",
@@ -84,6 +84,16 @@
8484
]
8585
}
8686
};
87+
88+
// configure the branding
89+
angular.module("fabric8", ['hawtioCore', 'hawtio-ui']).
90+
run(function (branding) {
91+
branding.appName = "fabric8";
92+
//branding.appLogo = 'img/branding/RHJB_Fuse_UXlogotype_0513LL_white.svg';
93+
});
94+
95+
hawtioPluginLoader.addModule("fabric8");
96+
8797
})(Perspective || {});
8898

8999

0 commit comments

Comments
 (0)