Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fprochazka/project
$ composer create-project hosiplan/project myApp
https://github.com/fprochazka/project
Last synced: 12 days ago
JSON representation
$ composer create-project hosiplan/project myApp
- Host: GitHub
- URL: https://github.com/fprochazka/project
- Owner: fprochazka
- License: other
- Created: 2012-09-07T15:47:42.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2013-10-26T14:59:21.000Z (about 11 years ago)
- Last Synced: 2024-10-17T22:59:18.089Z (22 days ago)
- Language: JavaScript
- Homepage: http://getcomposer.org/download/
- Size: 501 KB
- Stars: 8
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license.md
Awesome Lists containing this project
README
Nette Framework Sandbox
=======================The basic skeleton of application.
What is [Nette Framework](http://nette.org)?
--------------------------------------------Nette Framework 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.Nette Framework speaks your language and helps you to easily build better websites.
Installing
----------The best way to install Nette Framework is to download latest package
from http://nette.org/download or create new project using Composer:1. Install Composer: (see http://getcomposer.org/download)
curl -s http://getcomposer.org/installer | php
2. Create new project via Composer:
php composer.phar create-project nette/sandbox myApplication dev-master
cd myApplicationMake directories `temp` and `log` writable. Navigate your browser
to the `www` directory and you will see a welcome page. PHP 5.4 allows
you run `php -S localhost:8888 -t www` to start the webserver and
then visit `http://localhost:8888` in your browser.It is CRITICAL that file `app/config/config.neon` & whole `app`, `log`
and `temp` directory are NOT accessible directly via a web browser! If you
don't protect this directory from direct web access, anybody will be able to see
your sensitive data. See [security warning](http://nette.org/security-warning).