Skip to content
forked from raaydel/rimback

CMS base for the community of web programmers Rimorsoft Online.

Notifications You must be signed in to change notification settings

heraldo-sv/Rimback

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RimBack CMS

CMS base for the community of web programmers Rimorsoft Online.

Starting

Get a copy, fork and give us a super star. I want you to be aware of this playlist They are videos in Spanish, but the YouTube translator helps a lot this is rimback::create()

Installation Steps

1. Require the Package

After creating your new Laravel application, you must create the simple login system: php artisan make:auth

2. Add the database credentials

Remember that all this is done from the .env file:

Example

    DB_HOST=127.0.0.1
    DB_DATABASE=rimback
    DB_USERNAME=root
    DB_PASSWORD=root

3. Run the installer

We achieved it with the command: composer require rimorsoft/rimback dev-master

4. Next, add your new provider

We must do it in the file to the providers array of config/app.php:

    'providers' => [
        
        // ...

        Rimorsoft\Rimback\Providers\RimbackServiceProvider::class,
    ],

4. Decompress public files

This step is necessary to access the theme, driver, some views, configuration file, etc: php artisan vendor:publish --force

5. Install the tables in the database

Create the tables with the command: php artisan migrate:refresh

6. Last step

Get clients and be very successful


Build in

Thank you very much

You want to contribute?

Please see here to see our code of conduct, and the process of sending a pull requests.

Authors

You can be here

  • Italo Morales - Founder of the project - italomoralesf
  • your name here

You can help with documentation, creation of themes, package incorporation, etc

License

This project is under license (MIT).

Gratitude - Our heroes

Our community of web programmers Rimorsoft Online


file v1.1

About

CMS base for the community of web programmers Rimorsoft Online.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 79.7%
  • HTML 20.3%