Windowed Management System

Installs: 22

Dependents: 0

Suggesters: 0

Security: 0

Stars: 6

Watchers: 2

Forks: 3

Open Issues: 8

Language:Blade

Type:project


README

Windowed Management System

Laravel-KendoUI (Web Desktop-Like Application Environment)

GitHub All Releases

687474703a2f2f7777772e73696d6f6e65636f7363692e636f6d2f73746f726167652f6170702f6d656469612f6c6f676f5f776d732e737667

68747470733a2f2f6c61726176656c2e636f6d2f6173736574732f696d672f636f6d706f6e656e74732f6c6f676f2d6c61726176656c2e73766768747470733a2f2f74656c6572696b68656c7065722e66696c65732e776f726470726573732e636f6d2f323031352f30332f6b656e646f75692e706e673f773d343430

687474703a2f2f7777772e73696d6f6e65636f7363692e636f6d2f73746f726167652f6170702f6d656469612f53532d312e4a5047

About WMS (Whatever Management System)

WMS has been built on top of the Laravel Framework by extending some feature and using kendo-ui as frontend javascript framework. Basically WMS creates for you an environment very similar to your desktop for the administrative backoffice. The public area it's up to you.

Using this tool you don't need to be a skilled programmer. You just need to have knowledgebase of relational databases and that's all. The application code, for every new module you are going to create, is generated by the application itself. The owner is called to simply create visually the data models and click buttons to scaffold the source code.

NO PROGRAMMING SKILL IS REQUIRED

Once the code is created you can edit manually and add/integrate your own features.

The final effect is awesome and the administrator feels like at home. This is due to the windowed approach. Administrator already know how to handle a window, minimize, maximize, change wallpaper and themes etc.

It's a sort of online MDI form Application Generator which provides a simple way to create both the UI (User Interface) for the Frontend using kendo-ui framework and the Backend (CRUD) using Laravel framework.

Someone define it a sort of online access wizard, and it's not so far.

If you want to try out .... it's free and don't forget to star it if you like :)

Installation

Cloning the git

git clone https://github.com/simonecosci/wms.git <install-directory>
cd <install-directory>
composer install
npm install

Via Composer

composer create-project simonecosci/wms <install-directory>
cd <install-directory>
npm install

Database

Creata a new database

mysql -uroot -p
mysql> create database yourDatabaseName;
mysql> quit;

Then cp .env.example .env and update your database creds.

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=yourDatabaseName
DB_USERNAME=root
DB_PASSWORD=root

Change (if you want) the initial credential by editing the file /database/seeds/UsersTableSeeder.php or use these:

email: admin@example.com
password: admin

run the migrations with seed

php artisan migrate:fresh --seed

You can now run the web server

php artisan serve

or configure a virtualhost in your web server config

<VirtualHost *:80>
	ServerName localhost
	DocumentRoot "/<install-directory>/public"
	<Directory  "/<install-directory>/public/">
		Options +Indexes +Includes +FollowSymLinks +MultiViews
		AllowOverride All
		Require local
	</Directory>
</VirtualHost>

Navigate http://localhost/ and login

You have to give write permission to the following folders while your app is in development

  • app/Models
  • app/Http/Controllers/Admin
  • resources/views/admin
  • database/migrations
  • public/app
chmod -R 777 app/Models
chmod -R 777 app/Http/Controllers/Admin
chmod -R 777 resources/views/admin
chmod -R 777 database/migrations
chmod -R 777 public/app

To create your first window read the Wiki

687474703a2f2f7777772e73696d6f6e65636f7363692e636f6d2f73746f726167652f6170702f6d656469612f53532d322e4a5047

Licenses

The Laravel framework and the WMS are open-sourced software licensed under the MIT license.

The Kendo-UI framework is commercial software licensed https://www.telerik.com/purchase/license-agreement/kendo-ui.

Using this software requires a commercial license of Kendo UI