This repository has been archived by the owner on Feb 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
![Kegger](./frontend/src/assets/logo.png) | ||
|
||
Kegger is an Event / RSVP manager to keep track of guests attendance. | ||
The application is split into the API(Go) and the frontend(Vue.js). | ||
|
||
## Features | ||
|
||
- Create parties with guests | ||
- Send invite by email (only SendGrid supported as of now) | ||
- Create new / customize invitation email template | ||
- Create multiple administrators (hosts) | ||
- Keep track of | ||
- Guests Attendance | ||
- Invitations sent / not sent | ||
- Invitation was opened by guest | ||
|
||
## Backend / API | ||
|
||
Kegger's API is built using the [Echo](https://echo.labstack.com/) Go web framework. | ||
|
||
### Requirements | ||
|
||
- Go 1.12+ | ||
- Postgres 10+ | ||
- SendGrid account for being able to send out the email invites (optional) | ||
|
||
### Build | ||
|
||
```sh | ||
cd api | ||
edit .env file as per instructions in api/README.md) | ||
go build | ||
./gorsvp | ||
``` | ||
|
||
## Frontend | ||
|
||
Kegger's Frontend is built with Vue.js. | ||
|
||
### Requirements | ||
|
||
- Node.js 6+ | ||
|
||
### Build | ||
|
||
```sh | ||
cd frontend | ||
npm install # to install dependencies | ||
edit .env file as per instructions in frontend/README.md) | ||
npm run serve | ||
``` |