All Projects → nette → Tutorial Quickstart

nette / Tutorial Quickstart

🎓 Tutorial Quick Start: official intro to Nette Framework by creating blog.

Projects that are alternatives of or similar to Tutorial Quickstart

Sunset Cyberspace
🎮👾Retro-runner Game made in Expo, Three.js, OpenGL, WebGL, Tween. 🕹
Stars: ✭ 54 (-6.9%)
Mutual labels:  tutorial
Vulkan Tutorial
This is a series of tutorials on Vulkan, include all example projects which step by step.
Stars: ✭ 56 (-3.45%)
Mutual labels:  tutorial
Mindspore Nlp Tutorial
Natural Language Processing Tutorial for MindSpore Users
Stars: ✭ 58 (+0%)
Mutual labels:  tutorial
Cmake Demo
《CMake入门实战》源码
Stars: ✭ 1,071 (+1746.55%)
Mutual labels:  tutorial
Rust By Example Ext
Rust by Example -- Extended Edition
Stars: ✭ 56 (-3.45%)
Mutual labels:  tutorial
Llvm 9.0 Learner Tutorial
A blog for LLVM(v9.0.0 or v11.0.0) beginner, step by step, with detailed documents and comments. Record the way I learn LLVM and accomplish a complete project for FPGA High-Level Synthesis with it.
Stars: ✭ 58 (+0%)
Mutual labels:  tutorial
K8sdemo
Kubernetes demo
Stars: ✭ 53 (-8.62%)
Mutual labels:  tutorial
Phoenix Ecto Append Only Log Example
📝 A step-by-step example/tutorial showing how to build a Phoenix (Elixir) App where all data is immutable (append only). Precursor to Blockchain, IPFS or Solid!
Stars: ✭ 58 (+0%)
Mutual labels:  tutorial
Weixin Minigame Tutorial
Flappy Bird adaptation on Wechat Minigame using PhaserJS + English Wechat Minigames Tutorial
Stars: ✭ 56 (-3.45%)
Mutual labels:  tutorial
Frp Guides
A collection of tutorials, guidelines, examples, patterns and half-baked ideas on functional reactive programming (FRP).
Stars: ✭ 58 (+0%)
Mutual labels:  tutorial
Bot Telegram
Exemplo de como criar um BOT para o melhor app de mensagens do mundo: Telegram.
Stars: ✭ 53 (-8.62%)
Mutual labels:  tutorial
Mmdetection object detection demo
How to train an object detection model with mmdetection
Stars: ✭ 55 (-5.17%)
Mutual labels:  tutorial
Unityraymarching
Unity Raymarching Examples
Stars: ✭ 57 (-1.72%)
Mutual labels:  tutorial
Eve Building Restful Mongodb Backed Apis Course
Course materials and handouts for EVE: Building RESTful MongoDB-backed APIs course
Stars: ✭ 53 (-8.62%)
Mutual labels:  tutorial
Flask Tutorial
A tutorial to build your first flask application
Stars: ✭ 58 (+0%)
Mutual labels:  tutorial
Gobyexample
Go by Example 通过例子学 Golang
Stars: ✭ 1,066 (+1737.93%)
Mutual labels:  tutorial
Pythonbo
The PythonBo's Github repository. For more info visit
Stars: ✭ 56 (-3.45%)
Mutual labels:  tutorial
Opensource.guide
📚 Community guides for open source creators
Stars: ✭ 9,460 (+16210.34%)
Mutual labels:  tutorial
Regex In Python
A comprehensive guide for learning regular expressions using Python
Stars: ✭ 58 (+0%)
Mutual labels:  tutorial
30daysofnode
30 days of node is a code base tutorial series for node.js which deals with providing a practical project based learning experience instead of talking about its conceptual details.
Stars: ✭ 57 (-1.72%)
Mutual labels:  tutorial

Nette Web Project

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

Nette is a popular tool for PHP web development. It is designed to be the most usable and friendliest as possible. It focuses on security and performance and is definitely one of the safest PHP frameworks.

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 nette/web-project 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 app/, log/ and temp/ directories are not accessible directly via a web browser. See security warning.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].