Skip to content

Latest commit

 

History

History
59 lines (41 loc) · 1.54 KB

README.md

File metadata and controls

59 lines (41 loc) · 1.54 KB

Cocktailnator v2.0

Do you ever wish you were a cocktail master? Worry not, Cocktailnator has your back!

Cocktailnator

This is a do-over of a school project we had some months ago. I wanted to start from scratch taking into consideration the feedback received from both our teacher and classmates who got to test the app.

Features

  • Revamped UI
  • Sign up/Login with email, Twitter or Github (more options coming soon)
  • Save your favorite recipes (work in progress)

Coming soon!

  • Search by ingredients or beverages
  • Easily change username, email and password
  • Review recipes you've tested yourself
  • If you regret it all, you can also delete your account, no hard feelings

Try this code:

  • Get your best shaker ready
  • Make sure you have previously installed PHP, Composer and NPM
  • Clone this repo on your computer
  • Install dependendcies
composer install
npm install
  • Copy the .env file
cp .env.example .env
  • Generate an App Key
php artisan key:generate
  • Add your prefered database to the .env file
  • If you have an API Key from The Cocktail DB you can add it there too
  • Run the migrations
  • You would also need API Keys from Twitter and Github if you want to test those features. Take a look at Socialite
php artisan migrate
  • Get a server running
php artisan serve