All Projects → despark → igni-core

despark / igni-core

Licence: other
UNSUPPORTED: An easy to use & featherlight CMS that shortcuts the bootstrapping of backend PHP + MySQL based projects. Developed in Laravel, it uses the latest PHP coding standards and library versions.

Programming Languages

PHP
23972 projects - #3 most used programming language
javascript
184084 projects - #8 most used programming language
java
68154 projects - #9 most used programming language
CSS
56736 projects
HTML
75241 projects
actionscript
884 projects
shell
77523 projects

Projects that are alternatives of or similar to igni-core

selene
A opinionated Wordpress base theme based on Sage.
Stars: ✭ 31 (+138.46%)
Mutual labels:  gulp, composer
Awps
A Modern WordPress Starter Theme for savvy Developers
Stars: ✭ 319 (+2353.85%)
Mutual labels:  gulp, composer
web-starter-kit-gulp
Starter kit for automated front-end web development using Gulp, NPM, Bower, Babel, Sass, and Pug.
Stars: ✭ 35 (+169.23%)
Mutual labels:  gulp, bower
Pkgmirror
Packages Mirroring
Stars: ✭ 62 (+376.92%)
Mutual labels:  composer, bower
Imall
基于Laravel5.2,Vue.js1.0的微信商城,用于熟悉 Laravel、Vuejs、Webpack、Gulp 的结合使用,已不维护及更新。(1MB单核基础服务器,浏览请耐心等待图片加载...)
Stars: ✭ 168 (+1192.31%)
Mutual labels:  gulp, composer
Asset Packagist
Asset Packagist
Stars: ✭ 235 (+1707.69%)
Mutual labels:  composer, bower
docker-npm
npm, yarn, node, npx, bower, grunt, gulp, generate-md - build and dev tools.
Stars: ✭ 53 (+307.69%)
Mutual labels:  gulp, bower
Dependency spy
Find known vulnerabilities in your dependencies
Stars: ✭ 87 (+569.23%)
Mutual labels:  composer, bower
Ignition Go
Bootstrap4 /Codeigniter 3 Modular (HMVC) App Building Framework - to build enterprise class web applications... Versions: CodeIgniter 3.1.9 AdminLTE 3.4 Bootstrap 4.5.0
Stars: ✭ 166 (+1176.92%)
Mutual labels:  gulp, bower
Generator Fountain Webapp
Yeoman 'fountain' generator to start a webapp
Stars: ✭ 985 (+7476.92%)
Mutual labels:  gulp, bower
Composer Asset Plugin
NPM/Bower Dependency Manager for Composer
Stars: ✭ 898 (+6807.69%)
Mutual labels:  composer, bower
project-manager-laravel
Project manager system - PHP and AngularJS
Stars: ✭ 17 (+30.77%)
Mutual labels:  gulp, bower
animecenter
The source code for animecenter
Stars: ✭ 16 (+23.08%)
Mutual labels:  gulp, bower
Hoverboard
Conference website template
Stars: ✭ 935 (+7092.31%)
Mutual labels:  gulp, bower
generator-craftskeleton
Starterkit for Craft CMS 2.x (Multi-Environment Configs with HeartyConfig, Gulp, and Bower for Dependencie-Management)
Stars: ✭ 14 (+7.69%)
Mutual labels:  gulp, bower
sage-starter
The best starter theme with a modern front-end development workflow. Based on Sage, HTML5 Boilerplate, gulp, Bower, and Bootstrap.
Stars: ✭ 42 (+223.08%)
Mutual labels:  gulp, bower
gulp-reporter
Error report for: CSSLint/EditorConfig/ESLint/HTMLHint/JSCS/JSHint/PostCSS/Standard/TSLint/XO
Stars: ✭ 17 (+30.77%)
Mutual labels:  gulp
mark.js
mark.js用于标记选中的文字,自定义插入标签
Stars: ✭ 27 (+107.69%)
Mutual labels:  gulp
bower-resolve-webpack-plugin
Offers an enhanced bower support for enhanced-resolve plugin.
Stars: ✭ 12 (-7.69%)
Mutual labels:  bower
website-template
静的Webサイト制作を少しモダンにするためのテンプレート
Stars: ✭ 62 (+376.92%)
Mutual labels:  gulp

Latest Stable Version

Despark's igniCMS

UNSUPORTED

This project is not maintained anymore. Still we ❤️ you!

About

igniCMS is an administrative interface builder for Laravel 5.6.

For older Laravel versions (5.4 & 5.5) please use version 1.7 of the igniCMS.

Prerequisites

  • nodejs >= 4.0
  • yarn or npm
  • bower
  • gulp
  • composer

Installation

  1. Run composer require despark/igni-core.

  2. Add igniCMS service providers before the application service providers in the config/app.php, as shown below (Optional for Laravel 5.5+)

Example

 ...
  /*
  * igniCMS Service Providers
  */
  Despark\Cms\Providers\AdminServiceProvider::class,
  Despark\Cms\Providers\IgniServiceProvider::class,
  Despark\Cms\Providers\EntityServiceProvider::class,
  Despark\Cms\Providers\JavascriptServiceProvider::class,

  /*
  * Package Service Providers...
  */
  Laravel\Tinker\TinkerServiceProvider::class,
 ...
  1. Config your database settings in your .env file.
    DB_CONNECTION=mysql
    DB_HOST=127.0.0.1
    DB_PORT=3306
    DB_DATABASE=mydbw
    DB_USERNAME=user
    DB_PASSWORD=password
  1. Run this command in the terminal (it'll set all necessary resources to use the CMS. To complete this step you should have composer, npm & bower, installed globally):
  php artisan igni:install
  1. Config your config/auth.php file to use Igni's User model

Example

  ...
   'providers' => [
       'users' => [
           'driver' => 'eloquent',
           'model' => App\Models\User::class,
       ],
  ...
  1. All done! Now go to the <your_site_url>/admin and use your credentials

GDPR Compliance

  • IgniCMS provides you with out of the box functionalities, which will make the process of GDPR compliance on boarding easier. In our Github page you will understand how to use them.

Additional information

  • You can find more info about IgniCMS in our Github page.

Copyright and License

igniCMS was written by Despark for the Laravel framework and is released under the MIT License. See the LICENSE file for details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].