Test login:
username: admin password: password
- User as admin
username: admin,
password: password,
- user as organizer
username: tom,
password: 1234,
username: jerry,
password: 1234,
- user as organizer
username: odie,
password: 1234,
username: garfield,
password: 1234,
baseUrl : https://potluck-5044.herokuapp.com/
[DELETE] api/potlucks/:potluck\_id/:user\_id
**Note:** Requires provided token in request headers as authentication: token
[GET] api/potlucks/:user\_id/potlucks
**Note:** Requires provided token in request headers as authentication: token
[GET] api/potlucks/:potluck\_id
**Note:** Requires provided token in request headers as authentication: token
[POST] api/potlucks/:user\_id
**expects:** all potluck details, invites, and items
**returns** : all potlucks related to the user\_id
**Note:** Requires provided token in request headers as authentication: token
[PUT] api/potlucks/:potluck\_id/:user\_id
**expects:** all potluck details, invites, and items
**returns:** all potlucks related to the user\_id
**Note:** Requires provided token in request headers as authentication: token
[GET] api/users
**returns** all usernames, emails, and ids
**Note:** Requires provided token in request headers as authentication: token
[POST] api/auth/register
**expects** {username, password, email}
**returns** {username, email, user\_id, token}
[POST] api/auth/login
**expects** {username, password}
**returns** {username, email, user\_id, token}
npm run server