2017 © Pedro Peláez
 

project larasite

Simple CMS on Laravel framework.

image

larasite/larasite

Simple CMS on Laravel framework.

  • Tuesday, November 10, 2015
  • by tsubo
  • Repository
  • 1 Watchers
  • 0 Stars
  • 11 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 3 Versions
  • 0 % Grown

The README.md

LaraSite

Simple CMS on Laravel framework, (*1)

# Requirements

  • PHP >= 5.5.9
  • Database
    • SQLite
    • MySQL
    • PostgreSQL

# Instration

$ composer create-project larasite/larasite path/to/install
$ cd path/to/install

# Configration

.env, (*2)

# ...

APP_DEBUG=false

# ...

# database
DB_CONNECTION=mysql
DB_HOST=YOUR_DB_HOST
DB_DATABASE=YOUR_DATABASE_NAME
DB_USERNAME=YOUR_DATABASE_USERNAME
DB_PASSWORD=YOUR_PASSWORD

# ...

# Mail
MAIL_DRIVER=smtp
MAIL_HOST=YOUR_SMTP_HOST
MAIL_PORT=YOUR_SMTP_PORT
MAIL_USERNAME=YOUR_MAIL_USERID
MAIL_PASSWORD=YOUR_MAIL_PASSWORD
MAIL_ENCRYPTION=ssl
MAIL_FROM_ADDRESS=sender@email.com
MAIL_FROM_NAME=SENDER_NAME

# MailForm
MAILFORM_DELIVERY_ADDRESS=admin@email.com
MAILFORM_DELIVERY_NAME=ADMIN_NAME

config/app.php, (*3)

'url' => 'http://your_host_name',
'timezone' => 'Asia/Tokyo',
'locale' => 'ja',

config/auth_user.php, (*4)

return [
    'users' => [
        'admin' => 'admin123',
    ],
];

Setup Database

If you use SQLite..., (*5)

$ touch strage/database.sqlite

Migration, (*6)

$ php artisan migrate

Run LaraSite

$ php artisan serve
Laravel development server started on http://localhost:8000/

Customize

You can customeize a LaraSite in the Laravel way. - Blade Template - Eloquent ORM - Etc., (*7)

The Versions

10/11 2015

dev-master

9999999-dev

Simple CMS on Laravel framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel cms

10/11 2015

1.0.1

1.0.1.0

Simple CMS on Laravel framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel cms

10/11 2015

1.0.0

1.0.0.0

Simple CMS on Laravel framework.

  Sources   Download

MIT

The Requires

 

The Development Requires

laravel cms