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
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
- Git clone this repo
- run
composer install
- 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=
- run
php artisan key:generate
- Edit Database info in .env file
- Create the database and run
php artisan migrate
- run
php artisan db:seed
- run
php artisan serve
and visit http://localhost:8000/
If any problem with the classical installation, please refer to the official Laravel documentation.