Skip to content

Commit 119a974

Browse files
committed
style(readme,contributing,license): Improved readme and added github necessary files
Improved readme and added Contributing and license file
1 parent 651ab96 commit 119a974

File tree

4 files changed

+50
-22
lines changed

4 files changed

+50
-22
lines changed

.npmignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,5 @@ test
66
.travis.yml
77
.editorconfig
88
benchmarks
9+
CONTRIBUTING.md
10+
LICENSE.txt

CONTRIBUTING.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Contributing
2+
3+
In favor of active development we accept contributions from everyone. You can contribute by submitting a bug, creating pull requests or even by improving documentation.
4+
5+
Below is the guide to be followed strictly before submitting your pull requests.
6+
http://adonisjs.com/docs/2.0/contributing

LICENSE.txt

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

readme.md

Lines changed: 34 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,43 @@
11
# Adonis Commands
22

3-
![](https://img.shields.io/travis/adonisjs/adonis-commands.svg)
4-
[![Coverage Status](https://coveralls.io/repos/adonisjs/adonis-commands/badge.svg?branch=master&service=github)](https://coveralls.io/github/adonisjs/adonis-commands?branch=master)
3+
[![Gitter](https://img.shields.io/badge/+%20GITTER-JOIN%20CHAT%20%E2%86%92-1DCE73.svg?style=flat-square)](https://gitter.im/adonisjs/adonis-framework)
4+
[![Trello](https://img.shields.io/badge/TRELLO-%E2%86%92-89609E.svg?style=flat-square)](https://trello.com/b/yzpqCgdl/adonis-for-humans)
5+
[![Version](https://img.shields.io/npm/v/adonis-commands.svg?style=flat-square)](https://www.npmjs.com/package/adonis-commands)
6+
[![Build Status](https://img.shields.io/travis/adonisjs/adonis-commands/master.svg?style=flat-square)](https://travis-ci.org/adonisjs/adonis-commands)
7+
[![Coverage Status](https://img.shields.io/coveralls/adonisjs/adonis-commands/master.svg?style=flat-square)](https://coveralls.io/github/adonisjs/adonis-commands?branch=master)
8+
[![Downloads](https://img.shields.io/npm/dt/adonis-commands.svg?style=flat-square)](https://www.npmjs.com/package/adonis-commands)
9+
[![License](https://img.shields.io/npm/l/adonis-framework.svg?style=flat-square)](https://opensource.org/licenses/MIT)
510

6-
Adonis commands are official set of commands shipped with brand new installation of [Adonis Framework](http://adonisjs.com/)
11+
> :pray: Bunch of official ace commands shipped with Adonis framework.
712
8-
## The MIT License
13+
This repo contains commands used by [ace](http://adonisjs.com/docs/2.0/ace-commands) to do common tasks from command line. It includes
914

10-
COPYRIGHT (c) 2015 Harminder Virk
15+
1. Generators for `controllers, model, middleware and commands`.
1116

12-
MIT License
17+
You can learn more about AdonisJS and all of its awesomeness on http://adonisjs.com :evergreen_tree:
1318

14-
Permission is hereby granted, free of charge, to any person obtaining
15-
a copy of this software and associated documentation files (the
16-
"Software"), to deal in the Software without restriction, including
17-
without limitation the rights to use, copy, modify, merge, publish,
18-
distribute, sublicense, and/or sell copies of the Software, and to
19-
permit persons to whom the Software is furnished to do so, subject to
20-
the following conditions:
19+
## Table of Contents
2120

22-
The above copyright notice and this permission notice shall be
23-
included in all copies or substantial portions of the Software.
21+
* [Team Members](#team-members)
22+
* [Requirements](#requirements)
23+
* [Getting Started](#getting-started)
24+
* [Contribution Guidelines](#contribution-guidelines)
2425

25-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26-
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27-
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28-
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
29-
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
30-
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
31-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26+
## <a name="team-members"></a>Team Members
27+
28+
* Harminder Virk ([Medium Blog](https://medium.com/@amanvirk)) <[email protected]>
29+
30+
## <a name="requirements"></a>Requirements
31+
32+
AdonisJS is build on the top of ES2015, which makes the code more enjoyable and cleaner to read. It doesn't make use of any transpiler and depends upon Core V8 implemented features.
33+
34+
For these reasons, AdonisJS require you to use `node >= 4.0` and `npm >= 3.0`.
35+
36+
## <a name="getting-started"></a>Getting Started
37+
38+
39+
## <a name="contribution-guidelines"></a>Contribution Guidelines
40+
41+
In favor of active development we accept contributions for everyone. You can contribute by submitting a bug, creating pull requests or even improving documentation.
42+
43+
You can find a complete guide to be followed strictly before submitting your pull requests in the [Official Documentation](http://adonisjs.com/docs/2.0/contributing).

0 commit comments

Comments
 (0)