Go to file
Abel Hoogeveen 37d5ab4b17
Implemented 1.2.0-RC5
Also moved index to fuzeworks.php and added some variables to templates.
2019-09-18 17:34:19 +02:00
application Implemented 1.2.0-RC5 2019-09-18 17:34:19 +02:00
log Initial Commit. 2016-07-11 13:12:00 +02:00
temp Initial Commit. 2016-07-11 13:12:00 +02:00
test Implemented all changes requested during development 2019-03-15 17:29:08 +01:00
www Implemented 1.2.0-RC5 2019-09-18 17:34:19 +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 Initial commit for 1.2.0-BETA. 2019-02-27 13:58:34 +01:00
.gitlab-ci.yml Fixed Gitlab CI not correctly processing PHPUnit 2019-03-15 17:33:36 +01:00
.travis.yml Implemented all changes requested during development 2019-03-15 17:29:08 +01:00
LICENSE Initial commit for 1.2.0-BETA. 2019-02-27 13:58:34 +01:00
README.md Implemented all changes requested during development 2019-03-15 17:29:08 +01:00
composer.json Implemented 1.2.0-RC5 2019-09-18 17:34:19 +02: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 7.1 or higher.

Installation

The best way to install this Application 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 sure directories temp/ and log/ are 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.