Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/spatie/blender
The Laravel template used for our CMS like projects
https://github.com/spatie/blender
application cms laravel php
Last synced: about 9 hours ago
JSON representation
The Laravel template used for our CMS like projects
- Host: GitHub
- URL: https://github.com/spatie/blender
- Owner: spatie
- Archived: true
- Created: 2015-10-09T17:59:32.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2019-02-28T20:00:32.000Z (over 5 years ago)
- Last Synced: 2024-08-02T11:25:14.765Z (3 months ago)
- Topics: application, cms, laravel, php
- Language: PHP
- Homepage: https://freek.dev/on-open-sourcing-blender
- Size: 10.5 MB
- Stars: 878
- Watchers: 38
- Forks: 149
- Open Issues: 2
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
## Blender
[![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)](LICENSE.md)
[![StyleCI](https://styleci.io/repos/43971660/shield?branch=master)](https://styleci.io/repos/43971660)
[![Quality Score](https://img.shields.io/scrutinizer/g/spatie-custom/blender.svg?style=flat-square)](https://scrutinizer-ci.com/g/spatie-custom/blender)Blender is the Laravel template that is used for (nearly) all our projects.
You may use our template but please notice that we offer no support whatsoever. We also don't
follow semver for this project and won't guarantee that the code (especially the master branch) is stable. In short: when using this, you're on your own.## Install
This guide assumes you're using [Laravel Valet](https://github.com/laravel/valet)
### Laravel App
Download the master branch
```bash
git clone https://github.com/spatie/blender.git
```Make a copy `.env.example` and rename to `.env`
Install the composer dependencies
```bash
composer install
```Finally make sure you have a database named `blender`, and run the migrations and seeds
```bash
php artisan migrate --seed
```### Assets
Installing Blender's front end dependencies requires `yarn`.
```
yarn
```Blender uses [Laravel Mix](https://laravel.com/docs/5.5/mix) to build assets.
To build assets run:```bash
yarn run dev
```Available build tasks are defined in `package.json`
### Customisation
- Most of our projects are in Dutch. You can change the language in `config/app.php`.
- We use [Redactor](https://imperavi.com/redactor/) from Imperavi as text editor but are not licensed to open source this. The text editor is hence degraded to a standard text area unless you comment out this part in `resources/assets/back/app.js`## Colofon
### Contributing
Generally we won't accept any PR requests to Blender. If you have discovered a bug or have an idea to improve the code, contact us first before you start coding.
### License
Blender and The Laravel framework are open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT)