Skip to content
This repository has been archived by the owner on Sep 9, 2020. It is now read-only.

This repository holds a proposed solution for Datalumni's coding test ✔️

License

Notifications You must be signed in to change notification settings

waldeck-dev/beer-test-datalumni

Repository files navigation

Test Datalumni Laravel

This repository holds a proposed solution for Datalumni's coding test ✔️

Quick start - No installation required

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

Complete Installation

This section describes installation process to run this project from source 📦

  1. Clone this repository :
git clone https://github.com/waldeck-dev/beer-test-datalumni.git
cd beer-test-datalumni/
  1. Install project :
composer install
  1. Create database (Assuming MySQL is installed)
mysql -u <username> -p
CREATE DATABASE beer;

(replace '< username >' with your actual db username)

  1. 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>
  1. Start development server (Development server should be enough for testing purposes)
php artisan key:generate
php artisan migrate --seed
php artisan serve
  1. See it in action in your favorite web browser http://127.0.0.1:8000

License

This open-source software is licensed under the MIT license.

About

This repository holds a proposed solution for Datalumni's coding test ✔️

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published