Skip to content

Commit

Permalink
Add LICENSE, editorconfig and gitattributes
Browse files Browse the repository at this point in the history
Details
=======

- Add `.editoconfig`
- Add `.gitattributes`
- Add `LICENSE.txt` for the MIT License
- Update `README.md` to use yarn during the install
  • Loading branch information
Roberto Mauro committed May 10, 2021
1 parent bda11cb commit f4085d0
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 5 deletions.
12 changes: 12 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
root = true

[*]
end_of_line = lf
insert_final_newline = true

[*]
charset = utf-8

[*.{js,json}]
indent_style = space
indent_size = 2
7 changes: 7 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Exclude this files from the Release archive
.gitattributes export-ignore
.gitignore export-ignore
.editorconfig export-ignore
README.md export-ignore
CHANGELOG.md export-ignore
yarn.lock export-ignore
8 changes: 8 additions & 0 deletions LICENSE.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
The MIT License (MIT)
Copyright © 2021 Roberto Mauro

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:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

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.
9 changes: 4 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
# vdown

**vdown** is a Vimeo downloader that let you download audio/video data from a vimeo
stream and combine them into a single video file.
**vdown** is a Vimeo downloader that let you download audio/video data from a vimeo stream and combine them into a single video file.

## Install

```bash
git clone https://github.com/erremauro/vdown.git .
cd ./vdown
npm install
git clone https://github.com/erremauro/vdown.git
cd vdown
yarn install
```

## How to use it
Expand Down

0 comments on commit f4085d0

Please sign in to comment.