Skip to content
This repository has been archived by the owner on Dec 22, 2023. It is now read-only.

Commit

Permalink
Merge 9f2d651 into 22042c3
Browse files Browse the repository at this point in the history
  • Loading branch information
troyblank committed Nov 18, 2017
2 parents 22042c3 + 9f2d651 commit bf89714
Showing 1 changed file with 30 additions and 1 deletion.
31 changes: 30 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,33 @@
#Gift List Generator
# Gift List Generator

[![Build Status](https://travis-ci.org/troyblank/gift-list-generator.svg?branch=master)](https://travis-ci.org/troyblank/gift-list-generator)
[![Coverage Status](https://coveralls.io/repos/github/troyblank/gift-list-generator/badge.svg?branch=master)](https://coveralls.io/github/troyblank/gift-list-generator?branch=master)

## Setup
First thing you want to do is install all node packages run:

npm install

Next you will need to setup recipients of the list

cp config/list.example.json list.json

Inside this file add names, spouses, and emails for each person in the gift circle. A spouse will not get a gift from the person they are with. `listLength` is the amount of gifts each person will be responsible for giving.

After that add authorization for what email it will be sent from

cp config/email.example.json email.json

Inside the file add an email and password.

Currently this will only worith with `smtps`.

## Use

In order to send out an email list:

npm run

## Test

npm test

0 comments on commit bf89714

Please sign in to comment.