Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
JakubAndrysek authored Apr 30, 2020
1 parent 081a801 commit 02372cb
Showing 1 changed file with 0 additions and 62 deletions.
62 changes: 0 additions & 62 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,65 +5,3 @@ Webová s tránka k mé středoškolské odborné práci - [SOČ](http://www.soc

## EN
Webpage form my Students` Professional Activities - [SPA](http://www.soc.cz/english/)


Nette
======
This is a simple, skeleton application using the [Nette](https://nette.org). This is meant to
be used as a starting point for your new projects.

[Nette](https://nette.org) 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.

If you like Nette, **[please make a donation now](https://nette.org/donate)**. Thank you!


Requirements
------------

- Web Project for Nette 3.0 requires PHP 7.1


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 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](https://nette.org/security-warning).**


Notice: Composer PHP version
----------------------------

This project forces PHP 5.6 (eventually 7.1) as your PHP version for Composer packages. If you have newer
version on production server you should change it in `composer.json`:

```json
"config": {
"platform": {
"php": "7.2"
}
}
```

0 comments on commit 02372cb

Please sign in to comment.