Added README.

This commit is contained in:
Abel Hoogeveen 2016-07-11 13:27:37 +02:00
parent e3caa29380
commit 634133f182
1 changed files with 44 additions and 0 deletions

44
README.md Normal file
View File

@ -0,0 +1,44 @@
FuzeWorks Application Skeleton
=================
This is a simple, skeleton application using [FuzeWorks](https://techfuze.net/fuzeworks). This is meant to
be used as a starting point for your new projects.
[FuzeWorks](https://techfuze.net/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](https://doc.nette.org/composer). 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.**