Application/README.md

44 lines
1.4 KiB
Markdown
Raw Normal View History

FuzeWorks Application Skeleton [![Build Status](https://drone.i15.nl/api/badges/FuzeWorks/Application/status.svg)](https://drone.i15.nl/FuzeWorks/Application)
2016-07-11 11:27:37 +00:00
=================
This is a simple, skeleton application using [FuzeWorks](https://i15.nl/fuzeworks). This is meant to
2016-07-11 11:27:37 +00:00
be used as a starting point for your new projects.
[FuzeWorks](https://i15.nl/fuzeworks) is a versatile framework for web development.
2016-07-11 11:27:37 +00:00
It is designed to be the most usable and friendliest as possible. It focuses
on security and performance.
Requirements
------------
PHP 7.4 or higher.
2016-07-11 11:27:37 +00:00
Installation
------------
2019-03-15 16:37:23 +00:00
The best way to install this Application is using Composer. If you don't have Composer yet,
2016-07-11 11:27:37 +00:00
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
2019-03-15 16:37:23 +00:00
Make sure directories `temp/` and `log/` are writable.
2016-07-11 11:27:37 +00:00
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.**