Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 767 Bytes

README.md

File metadata and controls

19 lines (15 loc) · 767 Bytes

beer4peer - Voting App

A stupid voting app for the beer4peer Slack. This code is open source so that it's auditable and transparent. If you have any questions, please contact the Beer4Peer team.

This app tracks who votes, but not the actual vote.

Emails are not used, as they can in theory be tracked. Instead, Slack handles and logins are used.

Installation

  1. Clone the repo and cd into it
  2. composer install
  3. Rename or copy .env.example file to .env
  4. php artisan key:generate
  5. Setup a database and add your database credentials in your .env file
  6. php artisan migrate or php artisan migrate --seed if you want seed data
  7. yarn
  8. yarn dev
  9. php artisan serve or use Laravel Valet
  10. Visit localhost:8000 in your browser