Skip to content

Commit 4065f4a

Browse files
Merge branch 'feature/login'
2 parents 45b92c5 + 952dfa9 commit 4065f4a

19 files changed

+1029
-14
lines changed

.babelrc

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"presets": [
33
["env", { "modules": false }],
4-
"stage-3"
4+
"stage-3",
5+
"es2015"
56
]
67
}

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ cache:
1212
script:
1313
- npm run lint
1414
- npm run production
15+
- npm run test
1516

1617
notifications:
1718
email: false

README.md

+9-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
88
The purpose of this repository is to consume API, provide by [a Laravel Application](https://github.com/guillaumebriday/todolist-backend), with the [Vue.js](https://vuejs.org) JavaScript front-end framework.
99

10+
![Screenshot](https://raw.githubusercontent.com/guillaumebriday/todolist-frontend/master/screenshot.png)
11+
1012
## Some of the tools used in this project
1113

1214
- [Vue.js](https://vuejs.org)
@@ -30,8 +32,8 @@ Setting up your development environment on your local machine :
3032
```
3133
$ git clone https://github.com/guillaumebriday/todolist-frontend.git
3234
$ cd todolist-frontend
33-
$ docker-compose run node npm install
34-
$ docker-compose run --service-ports node npm run hot
35+
$ docker-compose run --rm node npm install
36+
$ docker-compose run --service-ports --rm node npm run hot
3537
```
3638

3739
## Useful commands
@@ -53,6 +55,11 @@ Running ESLint :
5355
$ docker-compose run --rm node npm run lint
5456
```
5557

58+
Running tests :
59+
```bash
60+
$ docker-compose run --rm node npm run test
61+
```
62+
5663
## More details
5764

5865
More details are available on my blog post : [https://guillaumebriday.fr/laravel-vuejs-faire-une-todo-list-partie-1-presentation-et-objectifs](https://guillaumebriday.fr/laravel-vuejs-faire-une-todo-list-partie-1-presentation-et-objectifs) (French).

index.html

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44
<meta charset="utf-8">
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">
66
<meta name="viewport" content="width=device-width, initial-scale=1">
7-
8-
<title>Todolist-frontend</title>
7+
<meta name="apple-mobile-web-app-capable" content="yes">
8+
<meta name="apple-mobile-web-app-title" content="Todolist">
9+
<title>Todolist</title>
910

1011
</head>
1112
<body class="bg-grey-lighter h-screen font-sans">

0 commit comments

Comments
 (0)