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.
Documentation for the Numencode is currently under development.
Numencode was created by and is maintained by Blaz Orazem.
Please write an email to [email protected] about all the things concerning this project.
Follow @blazorazem on Twitter.
Clone this repository to your project directory:
$ git clone https://github.com/BlazOrazem/numencode.gitMake sure you have Composer installed on your system and run:
$ composer installAnd finally run Numencode installer:
$ php artisan project:installYou're done.
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.
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.
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 yarnGo to your project root folder and install dependencies with Yarn:
$ yarn installResources 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 devProduction mode (minified code):
$ yarn run prodWatch mode (runs in the background and watches files for changes):
$ yarn run watchInstall 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 yarnFrom the project root directory navigate to:
$ cd modules/Admin/Resources/assets/vendorInstall dependencies with Yarn:
$ yarn installResources 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 devProduction mode (minified code):
$ yarn run prodWatch mode (runs in the background and watches files for changes):
$ yarn run watchNumencode is open-sourced software licensed under the MIT license.