Go to file
Abel Hoogeveen 421570da8c Merge branch '110release' into 'master'
Updated FuzeWorks Application Skeleton to 1.1.1

See merge request fuzeworks/Application!6
2018-01-14 14:12:11 +01:00
application Updated FuzeWorks Application Skeleton to 1.1.0 2017-10-12 16:19:02 +02:00
log Initial Commit. 2016-07-11 13:12:00 +02:00
temp Initial Commit. 2016-07-11 13:12:00 +02:00
tests Updated FuzeWorks Application Skeleton to FuzeWorks 1.1.1 2018-01-14 14:05:52 +01:00
www Updated Application to FuzeWorks Version 1.0.0 2016-07-23 17:38:06 +02:00
.codeclimate.yml Added Travis, CodeClimate. 2016-07-19 17:16:45 +02:00
.gitattributes Added Travis, CodeClimate. 2016-07-19 17:16:45 +02:00
.gitignore Implemented unit tests for future applications. 2016-07-11 14:27:10 +02:00
.gitlab-ci.yml Updated FuzeWorks Application Skeleton to 1.1.0 2017-10-12 16:19:02 +02:00
.travis.yml Updated FuzeWorks Application Skeleton to 1.1.0 2017-10-12 16:19:02 +02:00
CONTRIBUTING.md Added license and contribution guidelines 2016-07-11 13:23:39 +02:00
DCO Added license and contribution guidelines 2016-07-11 13:23:39 +02:00
LICENSE Added license and contribution guidelines 2016-07-11 13:23:39 +02:00
README.md Added Travis, CodeClimate. 2016-07-19 17:16:45 +02:00
composer.json Updated FuzeWorks Application Skeleton to FuzeWorks 1.1.1 2018-01-14 14:05:52 +01:00

README.md

FuzeWorks Application Skeleton Build Status

This is a simple, skeleton application using FuzeWorks. This is meant to be used as a starting point for your new projects.

FuzeWorks is a versatile framework for web development. It is designed to be the most usable and friendliest as possible. It focuses on security and performance.

Requirements

PHP 5.6 or higher.

Installation

The best way to install Web Project is using Composer. If you don't have Composer yet, download it following the instructions. Then use command:

composer create-project fuzeworks/application path/to/install
cd path/to/install

Make directories temp/ and log/ writable.

Web Server Setup

The simplest way to get started is to start the built-in PHP server in the root directory of your project:

php -S localhost:8000 -t www

Then visit http://localhost:8000 in your browser to see the welcome page.

For Apache or Nginx, setup a virtual host to point to the www/ directory of the project and you should be ready to go.

It is CRITICAL that whole application/, log/ and temp/ directories are not accessible directly via a web browser.