SysMVC


Github: https://github.com/syspanel/SysMVC.git



Project Information

SysMVC is a system developed by Marco Costa (syspanel@gmx.com), with source code licensed under the MIT License.

This software is offered for free and can be used, modified, and distributed under the terms of the MIT License.

Project website: https://sysmvc.duckdns.org

## Donations via PayPal If you wish to support the development of SysMVC, consider making a donation via PayPal to:

Donations via PAYPAL

If you wish to support the development of SysMVC, consider making a donation via PAYPAL to Donate via PayPal


🚀 Installation Tutorial

✅ Prerequisites

🔧 Step-by-Step

1️⃣ Unzip the File

Download and unzip the SysMVC file to your local environment:

unzip sysmvc.zip -d sysmvc
cd sysmvc
 

2️⃣ Install the Dependencies

Use Composer to install the project dependencies:

composer install
 

3️⃣ Configure the Environment

Copy the .env.example file to .env and configure your environment variables:

cp .env.example .env
 

Open the .env file and edit the following lines with your information:

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=your_database
DB_USERNAME=your_username
DB_PASSWORD=your_password
 

4️⃣ Set Permissions

Change the permissions of the storage and cache directories to ensure the web server can write to them:

chmod -R 775 storage
chmod -R 775 bootstrap/cache
 

5️⃣ Generate the Application Key

php bin/console generate:app-key
 

6️⃣ Run the Migrations

Run the migrations to create the tables in the database:

php bin/console migrate:crudexample
 

7️⃣ Configure the Web Server

📌 Apache

Add the following configuration to your Apache configuration file:

<VirtualHost *:80>
 ServerName sysmvc.local
 DocumentRoot /path/to/sysmvc/public

 <Directory /path/to/sysmvc/public>
 AllowOverride All
 Require all granted
 </Directory>
</VirtualHost>
 
📌 Nginx

Add the following configuration to your Nginx configuration file:

server {
 listen 80;
 server_name sysmvc.local;
 root /path/to/sysmvc/public;

 index index.php index.html index.htm;

 location / {
 try_files $uri $uri/ /index.php?$query_string;
 }

 location ~ \.php$ {
 include snippets/fastcgi-php.conf;
 fastcgi_pass unix:/var/run/php/php7.4-fpm.sock;
 }
}
 

📦 Dependencies Used

The project uses the following third-party packages, each with its respective license:

✅ Packages with MIT License


📜 Terms of Use

This project is licensed under the MIT License.

You can use, copy, modify, merge, publish, distribute, sublicense, or sell copies of the Software, provided that the license and copyright notice are included in all copies or substantial portions of the Software.

The Software is provided "as is", without any warranty of any kind. For more details, please consult the MIT License.

For more information, contact: marcocosta@gmx.us

© 2025 Marco Costa - All rights reserved under the MIT License.