Skip to content

Commit b9740ff

Browse files
committed
Start 🚀 :octocat:
0 parents  commit b9740ff

File tree

5 files changed

+79
-0
lines changed

5 files changed

+79
-0
lines changed

.editorconfig

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# EditorConfig helps developers define and maintain consistent
2+
# coding styles between different editors and IDEs
3+
# http://editorconfig.org
4+
5+
root = true
6+
7+
[*]
8+
indent_style = space
9+
indent_size = 2
10+
end_of_line = lf
11+
charset = utf-8
12+
trim_trailing_whitespace = true
13+
insert_final_newline = true

.gitignore

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# OSX
2+
.DS_Store
3+
4+
# windows
5+
Desktop.ini
6+
7+
# NodeJS
8+
node_modules/
9+
bower_components/
10+
npm-debug.log
11+
.grunt
12+
13+
# Ruby
14+
.sass-cache/

CONTRIBUTING.md

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Contributing
2+
3+
1. Fork it!
4+
2. Create your feature branch: `git checkout -b my-new-feature`
5+
3. Commit your changes: `git commit -m 'Add some feature'`
6+
4. Push to the branch: `git push origin my-new-feature`
7+
5. Submit a pull request
8+
9+
**After your pull request is merged**
10+
11+
After your pull request is merged, you can safely delete your branch.
12+
13+
### [<-- Back](https://github.com/afonsopacifer/open-source-boilerplate/)

LICENSE.md

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Copyright (c) 2015 Afonso Pacifer, [afonsopacifer.com](http://afonsopacifer.com/)
2+
3+
Permission is hereby granted, free of charge, to any person obtaining a copy
4+
of this software and associated documentation files (the "Software"), to deal
5+
in the Software without restriction, including without limitation the rights
6+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7+
copies of the Software, and to permit persons to whom the Software is
8+
furnished to do so, subject to the following conditions:
9+
10+
The above copyright notice and this permission notice shall be included in
11+
all copies or substantial portions of the Software.
12+
13+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19+
THE SOFTWARE.

README.md

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Open Source Boilerplate
2+
3+
[![licence mit](https://img.shields.io/badge/licence-MIT-blue.svg)](https://github.com/afonsopacifer/open-source-boilerplate/blob/master/license.md)
4+
5+
> Full description
6+
7+
## Versioning
8+
9+
To keep better organization of releases we follow the [Semantic Versioning 2.0.0](http://semver.org/) guidelines.
10+
11+
## Contributing
12+
Find on our [roadmap](https://github.com/afonsopacifer/open-source-boilerplate/issues/1) the next steps of the project ;)
13+
<br>
14+
Want to contribute? [Follow these recommendations](https://github.com/afonsopacifer/open-source-boilerplate/blob/master/contributing.md).
15+
16+
## History
17+
See [Releases](https://github.com/afonsopacifer/open-source-boilerplate/releases) for detailed changelog.
18+
19+
## License
20+
[MIT License](https://github.com/afonsopacifer/open-source-boilerplate/blob/master/license.md) © [Afonso Pacifer](http://afonsopacifer.com/)

0 commit comments

Comments
 (0)