https://github.com/geolffreym/vinagre
Give flavor to your salad
https://github.com/geolffreym/vinagre
Last synced: 3 months ago
JSON representation
Give flavor to your salad
- Host: GitHub
- URL: https://github.com/geolffreym/vinagre
- Owner: geolffreym
- License: gpl-3.0
- Created: 2015-04-13T13:54:20.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-05-12T03:56:16.000Z (about 10 years ago)
- Last Synced: 2025-02-02T09:27:55.205Z (5 months ago)
- Language: PHP
- Size: 467 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
Vinagre - Give flavor to your salad
===================
PHP MVC | MTV pattern based framework. Make the job easy and fast.
(Dev Version)Configure Framework
=======Requirements
------------
* MYSQLi 5.5 >
* PHP 5.5 >NGINX
-----
location / {
try_files $uri $uri/ /ini.php;
}location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index ini.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;}
Environment
----------
In the file public / ini.php should set the enviroment ( developmment, production ) , which is associated directly to the folder / app / enviroment.
For the configuration of the work environment , you must modify the files , autoload.php and config.php in the folder of your working environment."app/config.ini"
The config.php contains a number of arrangements for handling different configurations in the framework (cache , databases , mail, security , ftp, etc )."app/autoload.php"
The autoload function is provided by the framework Loader , allowing autoloading libraries , helpers , etc. This in order to allow handling different functionalities already own the framework or adapted by the sparks.Learning
=========General Topics
--------------
*Pending Documentation*Languages and Translation
------------------------
*Pending Documentation*Exceptions
----------
*Pending Documentation*Libs
----
*Pending Documentation*Sparks
------
*Pending Documentation*Security
------
*Pending Documentation*Traits
-----
*Pending Documentation*Helpers
-----
*Pending Documentation*Our App
======URL
-----
*Pending Documentation*Controllers
-----------
*Pending Documentation*Models
-------
*Pending Documentation*Views
-----
*Pending Documentation*