https://github.com/frenchbread/contact-book
https://github.com/frenchbread/contact-book
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/frenchbread/contact-book
- Owner: frenchbread
- License: mit
- Created: 2017-11-15T18:40:08.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-07T14:10:21.000Z (over 8 years ago)
- Last Synced: 2025-04-05T20:31:23.454Z (about 1 year ago)
- Language: Vue
- Size: 115 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# contact-book
> Contacts book app.
## Development
App consists of 3 components:
- Web app (`contact-book/app`)
- API server (`contact-book/server`)
- MongoDB
## Setup
```
$ git clone https://github.com/frenchbread/contact-book
```
### API Server
1. Navigate to server dir
```bash
$ cd contact-book/server
```
2. Update `config.js` file with correct MongoDB host
3. Install dependencies
```bash
$ yarn install
```
4. Start the server
```bash
$ yarn run start
```
### Web app
1. Navigate to app dir
```bash
$ cd contact-book/app
```
2. Install dependencies
```bash
$ yarn install
```
3. Start dev server with hot-reload
```bash
$ yarn run dev
```
4. Build the app
```bash
$ yarn run build
```
## LICENSE
[MIT](https://github.com/frenchbread/contact-book/blob/master/LICENSE)