This repository holds a proposed solution for Datalumni's coding test ✔️
You don't care about the code and you just want to see the result? :star2: See it live here : http://beer-test.waldeck.pw
This section describes installation process to run this project from source 📦
- Clone this repository :
git clone https://github.com/waldeck-dev/beer-test-datalumni.git
cd beer-test-datalumni/
- Install project :
composer install
- Create database (Assuming MySQL is installed)
mysql -u <username> -p
CREATE DATABASE beer;
(replace '< username >' with your actual db username)
- Copy .env file and edit it:
cp .env.example .env
nano .env
Edit database info on .env based on your config :
DB_CONNECTION=mysql
DB_HOST=<your database host>
DB_PORT=3306
DB_DATABASE=beer
DB_USERNAME=<your database user>
DB_PASSWORD=<your database password>
- Start development server (Development server should be enough for testing purposes)
php artisan key:generate
php artisan migrate --seed
php artisan serve
- See it in action in your favorite web browser
http://127.0.0.1:8000
This open-source software is licensed under the MIT license.