Skip to content

Latest commit

 

History

History
45 lines (31 loc) · 1.11 KB

readme.md

File metadata and controls

45 lines (31 loc) · 1.11 KB

Larablog

This project aims to achieve a full-featured personnal website / blog.

This is an open source project, if you'd like to participate and/or use it, enjoy :)

Demo : http://mydnic.be

Installation

Vagrant

If you are used to vagrant, just clone this repository and run vagrant up. Once the script is finished, you should be up and running!

Visit http://localhost:4567 to see the website

A phpMyAdmin is available at http://localhost:4568

Username = user (or root)

Password = pass

Classic

  1. Git clone this repo
  2. run composer install
  3. at the root, create .env file and insert the following lines
APP_ENV=local
APP_DEBUG=true
APP_KEY=

DB_HOST=localhost
DB_DATABASE=larablog
DB_USERNAME=root
DB_PASSWORD=

  1. run php artisan key:generate
  2. Edit Database info in .env file
  3. Create the database and run php artisan migrate
  4. run php artisan db:seed
  5. run php artisan serve and visit http://localhost:8000/

If any problem with the classical installation, please refer to the official Laravel documentation.