numencode / cms
Numencode - Content Management System
Installs: 1
Dependents: 0
Suggesters: 0
Security: 0
Stars: 9
Watchers: 3
Forks: 3
Open Issues: 0
Type:project
Requires
- php: ^7.3
- barryvdh/laravel-debugbar: ^3.2
- beyondcode/laravel-dump-server: ^1.3
- fideloper/proxy: ^4.2
- filp/whoops: ^2.5
- fzaninotto/faker: ^1.8
- guzzlehttp/guzzle: ^6.3
- intervention/image: ^2.5
- intervention/imagecache: ^2.4
- laracasts/utilities: ^3.0
- laravel/framework: ^6.4
- laravel/socialite: ^4.2
- laravel/tinker: ^1.0
- rap2hpoutre/laravel-log-viewer: ^1.3
- spatie/laravel-analytics: ^3.8
- spletna-postaja/translatable: ^2.0
- unisharp/laravel-filemanager: dev-master
- vemcogroup/laravel-sparkpost-driver: ^1.0
Requires (Dev)
- barryvdh/laravel-ide-helper: ^2.6
- facade/ignition: ^1.11
- laravel/dusk: ^5.5
- mockery/mockery: ^1.2
- nunomaduro/collision: ^3.0
- phpunit/phpunit: ^8.4
This package is auto-updated.
Last update: 2024-10-27 20:00:25 UTC
README
Numencode is a web application, based on Laravel framework 6.4, that allows publishing, editing and modifying content, organizing, deleting as well as maintenance from a central interface.
It is used to run websites containing pages, blog, news, galleries, catalogs and shopping.
Numencode is a stand-alone application to create, deploy, manage and store content on web pages. Web content includes text and embedded graphics, photos, video, audio and code (e.g., for applications) that displays content or interacts with the user.
Numencode contains built-in back-office administration panel for managing content and structure on a specific website.
Official Documentation
Documentation for the Numencode is currently under development.
About the Author
Numencode was created by and is maintained by Blaz Orazem.
Please write an email to info@numencode.com about all the things concerning this project.
Follow @blazorazem on Twitter.
Installation in three steps
Clone this repository to your project directory:
$ git clone https://github.com/BlazOrazem/numencode.git
Make sure you have Composer installed on your system and run:
$ composer install
And finally run Numencode installer:
$ php artisan project:install
You're done.
Configuration
Check file .env.example
for more configurations and copy desired settings to your .env
file.
Be sure to check /config/numencode.php
file for some more application settings.
Admin Dashboard
The URL for the admin dashboard should be your APP_URL
(from .env
file) followed by /admin
,
eg.: https://www.numencode.com/admin
The manager credentials are set by the php artisan project:install
command.
Website frontend workflow with Laravel Mix for the default theme
Install Node.js on your system to be able to run npm
commands in your terminal.
Install dependency manager Yarn by running command:
$ npm i -g yarn
Go to your project root folder and install dependencies with Yarn:
$ yarn install
Resources for the default theme (styles and scripts) are stored in:
/modules/Cms/Resources/assets/
After you make modifications in styles and/or scripts files, simply run Laravel Mix:
Development mode (non-minified code with source maps):
$ yarn run dev
Production mode (minified code):
$ yarn run prod
Watch mode (runs in the background and watches files for changes):
$ yarn run watch
Admin frontend workflow with Laravel Mix for the admin theme
Install Node.js on your system to be able to run npm
commands in your terminal.
Install dependency manager Yarn by running command:
$ npm i -g yarn
From the project root directory navigate to:
$ cd modules/Admin/Resources/assets/vendor
Install dependencies with Yarn:
$ yarn install
Resources for the admin theme (styles and scripts) are stored in:
/modules/Admin/Resources/assets/
After you make modifications in styles and/or scripts run in directory modules/Admin/Resources/assets
,
run Laravel Mix with the command:
Development mode (non-minified code with source maps):
$ yarn run dev
Production mode (minified code):
$ yarn run prod
Watch mode (runs in the background and watches files for changes):
$ yarn run watch
License
Numencode is open-sourced software licensed under the MIT license.