Giter Club home page Giter Club logo

ozonocms's Introduction

Ozono CMS based on Laravel PHP Framework

migraciones

php artisan migrate --seed

ozonocms's People

Contributors

raicoacosta avatar dev3psi avatar jmespiz avatar alexr1712 avatar abr4xas avatar craftersama avatar

Stargazers

vdsancheza avatar  avatar Manuel Aguirre avatar  avatar  avatar

Watchers

James Cloos avatar Manuel Aguirre avatar Jesús Contreras (Chuda) avatar  avatar Carlos Ferrer avatar  avatar  avatar Jose Otero (Oteroweb) avatar  avatar  avatar

ozonocms's Issues

Define main technologies

Definir las tecnologias principales por las que se regira el CMS. se ha comentado sobre hacer uso de Vue.js para el front-end.

Realmente, que es OzonoCMS??

Saludos,

Realmente, que es OzonoCMS?? En que va a estar enfocado esto que planeamos hacer??

  • Un blog??
  • Un cms para sitios web??

Creo que ya es hora de ir definiendo esto lo más pronto posible. 😃 😃

Install Entrust

Install Entrust To manage users role permissions

run the Command composer require zizaco/entrust:5.2.x-dev

Entrust Migration Problem

Al ejecutar las migraciones arroja el siguiente error con la que hace uso de Entrust.

  [Illuminate\Database\QueryException]                                         
  SQLSTATE[42000]: Syntax error or access violation: 1103 Incorrect table nam  
  e '' (SQL: alter table `role_user` add constraint `role_user_user_id_foreig  
  n` foreign key (`user_id`) references `` (`id`) on delete cascade on update  
   cascade)

Ejecutar Seeder en una linea

Buenas tardes, que les parece si en vez de correr cada seeder por separado mejor agruparlos en DatabaseSeeder.php.

de esta manera quien necesite generar información con los seeder solo tenga que usar:

php artisan migrate --seed

Enviare el PR con lo que mencione, dependiendo de su opinión puede aceptarlo o rechazarlo.

Saludos.

Pages Manager & Dynamic Friendly URLs.

Create table migration for pages manager and integration for generate friendly urls of pages (SEF).
Table migration for pages (main fields):

<?php

use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;


class CreatePagesTable extends Migration
{
    /**
     * Run the migrations.
     *
     * @return void
     */
    public function up()
    {
        Schema::create('pages', function (Blueprint $table) {

            $table->bigIncrements('id');
            $table->string('title', 255);
            $table->string('slug', 255);
            $table->mediumText('text');
            $table->tinyInteger('published');
            $table->tinyInteger('access_level');
            $table->bigInteger('created_by');
            $table->bigInteger('edited_by');
            $table->timestamps();
            $table->softDeletes();

        });
    }

    /**
     * Reverse the migrations.
     *
     * @return void
     */
    public function down()
    {
        Schema::drop('pages');
    }
}

I'll add more details shortly.

Agregar https://backstroke.us

Backstroke es un servicio que ayuda a mantener sincronziados los forks con el repo original, creando automaticamente pull request y actualizandolos en caso de que sea necesario en cada fork...

Esto considero que seria de mucha utilidad para el actual esquema de desarrollo de OzonoCMS

https://backstroke.us

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.