Skip to content

Latest commit

 

History

History
56 lines (36 loc) · 1.3 KB

README.md

File metadata and controls

56 lines (36 loc) · 1.3 KB

Simple Nette Web Project

Made from Snow Project created by Milan Felix Šulc.

Provided for even better use and as much simple implementation as possible.

Contains

Backend

Whole project is based on Contributte packages.

  • contributte/application
  • contributte/bootstrap
  • contributte/di
  • contributte/forms
  • contributte/http
  • contributte/mail
  • contributte/utils
  • contributte/latte
  • contributte/tracy
  • nette/robot-loader

We use RobotLoader for autoloading .

Frontend

There are also some assets included via cdn.

Installation

You will need PHP >= 7.2 and Composer. Be sure you are on proper version.

Now build you project using composer.

composer create-project tr1st/simple-nette-web-project -s dev path/to/install

Application is now installed, fell free to run it and test as you want to.

Simple Web Server

The easiest way is to use php built-in web server. Just type in your console:

php -S 0.0.0.0:8000 -t www

Then visit http://localhost:8000 in your browser.

Done.