There is no setup required just place the folder pdfbooks on your server and go to localhost/pdfbooks.
The files used in the demo are in /app/views/demo/...
Command line tool of https://github.com/timostrating/noframework
$ php nofamework.php
_ _ ______ _
| \ | | | ____| | |
| \| | ___ | |__ __ _ _ __ ___ _____ _____ _ __| | __
| . ` |/ _ \| __| / _` | '_ ` _ \ / _ \ \ /\ / / _ \| '__| |/ /
| |\ | (_) | | | (_| | | | | | | __/\ V V / (_) | | | <
|_| \_|\___/|_| \__,_|_| |_| |_|\___| \_/\_/ \___/|_| |_|\_\
you can use the following functions
generate [name] - generates a scaffold
seed - seeds the database
routes - shows all SuperGlobal route paths
- app/ -- All our MVC stuff goes in here
- model/ -- Our MVC Model
- view/ -- Our MVC Views
- contollers/ -- Our MVC Controllers
- config/ -- All configuration files
app.php -- This links the public/index.php to the framework
config.php -- General personal configuration for your installation
routes.php -- This file links a url to a function in a controller
seeds.php -- This file contains everything to rebuild the database
- core/ -- Our most important framework files
- Autoload/ -- Autoload Class
- database/ -- Database Class
- router/ -- View / ViewLoader Class
helpers.php -- All helper functions are in here
- noframework/ -- A collection of files that are used in the generators
- public/ -- The root of our application
- assets/ -- Contains all assets for the web-application
index.php -- Root file
index.html -- Welcome message
noframework.php -- $ php ./noframework.php for more info about this tool