Skip to content

Commit 48eb022

Browse files
committed
added license
1 parent b1d2cf6 commit 48eb022

File tree

3 files changed

+60
-17
lines changed

3 files changed

+60
-17
lines changed

LICENSE

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

README.md

Lines changed: 28 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,33 @@
1-
# tocode-youtube-vtwitter-vue-cli
1+
<div align="center">
2+
<img width="200" height="200" src="https://cdn.cms-twdigitalassets.com/content/dam/about-twitter/en/brand-toolkit/brand-download-img-3.jpg.twimg.2560.jpg">
3+
<h1>VTwitter</h1>
4+
<p>
5+
Modern app with Vue.js 3ƒ
6+
</p>
7+
<p>Author: <a href="https://tocode.ru" target="_blank">To code</a> | <a href="https://youtube.com/playlist?list=PLkCrmfIT6LBRcU37KZnMqy5hcTuwRhQkb" target="_blank">Youtube guide in Russian</a></p>
8+
</div>
29

3-
## Project setup
4-
```
5-
yarn install
6-
```
10+
## Build Setup:
711

8-
### Compiles and hot-reloads for development
9-
```
10-
yarn serve
11-
```
12+
```bash
13+
# Download repository:
14+
git clone https://github.com/vedees/tocode-youtube-vtwitter vtwitter
1215

13-
### Compiles and minifies for production
14-
```
15-
yarn build
16+
# Go to the app:
17+
cd vtwitter
18+
19+
# Install dependencies:
20+
npm install
21+
22+
# Server with hot reload at http://localhost:8081/
23+
npm run serve
24+
25+
# Output will be at dist/ folder
26+
npm run build
1627
```
1728

18-
### Customize configuration
19-
See [Configuration Reference](https://cli.vuejs.org/config/).
29+
## License
30+
31+
[MIT](./LICENSE)
32+
33+
Copyright (c) 2018-present, [Evgenii Vedegis](https://github.com/vedees)

package.json

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
11
{
2-
"name": "tocode-youtube-vtwitter-vue-cli",
3-
"version": "0.1.0",
4-
"private": true,
2+
"name": "tocode-youtube-vtwitter",
3+
"version": "1.0.0",
54
"scripts": {
65
"serve": "vue-cli-service serve",
76
"build": "vue-cli-service build"
87
},
8+
"author": "https://github.com/vedees",
9+
"repository": {
10+
"type": "git",
11+
"url": "git+https://github.com/vedees/tocode-youtube-vtwitter.git"
12+
},
13+
"bugs": {
14+
"url": "https://github.com/vedees/tocode-youtube-vtwitter/issues"
15+
},
16+
"license": "MIT",
917
"dependencies": {
1018
"core-js": "^3.6.5",
1119
"vue": "^3.0.0"

0 commit comments

Comments
 (0)