larablog

(β˜… 143)

A powerful open source Laravel Blog with WYSWYG and CRUD (Create Read Update Delete) built on Laravel 5.8 and Bootstrap 4

Showing a partial file list β€” download the zip above to see everything.

  • .editorconfig
  • .env.example
  • .env.travis
  • .gitattributes
  • .gitignore
  • .travis.yml
  • artisan
  • composer.json
  • LICENSE
  • package.json
  • phpunit.xml
  • README.md

# Installation Guide

1. Get the code
git clone https://github.com/jeremykenedy/larablog

Downloads the entire project code from GitHub to your computer.

cd larablog

Moves into the project folder you just downloaded.

2. Node.js

Easy Recommended
Prerequisites
  • Git Needed to download the project code from GitHub.
  • Node.js Node.js must be installed to use npm. The LTS version is recommended.
11. Compile the front end assets with [npm steps](#using-npm) or [yarn steps](#using-yarn).

Type this command into your terminal and run it.

1. From the projects root folder run `npm install`

Downloads and installs the libraries listed in package.json.

2. From the projects root folder run `npm run dev` or `npm run production`

Starts the development/run server.

* You can watch assets with `npm run watch`

Type this command into your terminal and run it.

1. From the projects root folder run `yarn install`

Downloads and installs the libraries listed in package.json.

βœ… After running the command, open the address shown in the terminal (usually something like http://localhost:3000) in your browser.

Pulled directly from this repo's README.

3. PHP (Composer)

Easy
Prerequisites
  • Git Needed to download the project code from GitHub.
  • PHP A PHP runtime is required.
  • Composer The package manager used to install PHP libraries.
5. Run `composer install` from the projects root folder

Installs the PHP libraries listed in composer.json.

9. From the projects root folder run `composer dump-autoload`

Type this command into your terminal and run it.

βœ… Run it with a built-in server like php -S localhost:8000, then open http://localhost:8000 in your browser.

Pulled directly from this repo's README.

// repository documentation