Skeleton of the rest-full app.

Maintainers

Details

github.com/rest-full/app

Source

Issues

Installs: 0

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

Type:project

1.0.0 2024-01-27 11:53 UTC

This package is auto-updated.

Last update: 2024-04-27 12:32:53 UTC


README

About Rest-Full App

A skeleton for creating applications with Rest-full 1.x.

The framework source code can be found here: rest-full/rest-full.

Installation

  • Download Composer or update composer self-update.
  • Run php composer.phar create-project rest-full/app [app_name] or composer installed globally compser create-project rest-full/app [app_name].

Obs: app_name is the folder that will be created by the composer, if you don't have a name you will create the app folder.

Preparing for development

Even if you know the process, remember it.

You will have to activate composer.json and package.json to have vendor and node_modules.

Gulp needs node_modules installed.

Only then will activate gulp with run develop for your css and javascript to be created automatically with the change you will make in the development.

And you will develop the site or system with php in the src folder, which is already separated in MVC, you can rest assured.

Preparing for production

Now that you're ready to put it on the server, let's do the following:

  • run the package.json run production, that it will do the same thing as the run developer just by minifying the files so they don't weigh on the server
  • the folders and files that will be taken for further production are:
    • abstration
    • assets
    • config
    • log
    • node_modules
    • src
    • vendor
    • webroot
    • .gitignore
    • .htacces
    • composer.json
    • gulpile.js
    • index.php
    • license
    • package.json
    • readme.md
    • scrutinize.yml

License

The rest-full framework is open-sourced software licensed under the MIT license.