Skip to content

Commit

Permalink
Merge branch 'feature/login'
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumebriday committed Jan 7, 2018
2 parents 45b92c5 + 952dfa9 commit 4065f4a
Show file tree
Hide file tree
Showing 19 changed files with 1,029 additions and 14 deletions.
3 changes: 2 additions & 1 deletion .babelrc
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"presets": [
["env", { "modules": false }],
"stage-3"
"stage-3",
"es2015"
]
}
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ cache:
script:
- npm run lint
- npm run production
- npm run test

notifications:
email: false
11 changes: 9 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
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.

![Screenshot](https://raw.githubusercontent.com/guillaumebriday/todolist-frontend/master/screenshot.png)

## Some of the tools used in this project

- [Vue.js](https://vuejs.org)
Expand All @@ -30,8 +32,8 @@ Setting up your development environment on your local machine :
```
$ git clone https://github.com/guillaumebriday/todolist-frontend.git
$ cd todolist-frontend
$ docker-compose run node npm install
$ docker-compose run --service-ports node npm run hot
$ docker-compose run --rm node npm install
$ docker-compose run --service-ports --rm node npm run hot
```

## Useful commands
Expand All @@ -53,6 +55,11 @@ Running ESLint :
$ docker-compose run --rm node npm run lint
```

Running tests :
```bash
$ docker-compose run --rm node npm run test
```

## More details

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).
Expand Down
5 changes: 3 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">

<title>Todolist-frontend</title>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="Todolist">
<title>Todolist</title>

</head>
<body class="bg-grey-lighter h-screen font-sans">
Expand Down
Loading

0 comments on commit 4065f4a

Please sign in to comment.