Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module.exports = {
singleQuote: true,
semi: false
};
13 changes: 8 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,32 +1,35 @@
# authentication_course

## Project setup

```
npm install
```

### Compiles and hot-reloads for development
```
npm run serve
```
### Same as above and start backend server
### Compiles and hot-reloads for development & starts backend server

```
npm run start
```

### Compiles and minifies for production

```
npm run build
```

### Run your tests

```
npm run test
```

### Lints and fixes files

```
npm run lint
```

### Customize configuration

See [Configuration Reference](https://cli.vuejs.org/config/).
96 changes: 0 additions & 96 deletions _server.js

This file was deleted.

4 changes: 2 additions & 2 deletions db/user.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "John Smith",
"email": "john@gmail.com",
"name": "Kate Mary",
"email": "kate@gmail.com",
"password": "pass123"
}
Loading