Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/creatorcz/templaterbe-mvc-
tvořič šablon v pdf. Napsáno v Nette a pomocí latte má i frontend
https://github.com/creatorcz/templaterbe-mvc-
curl export-to-excel import-from-excel latte login-system mpdf nette-framework phpspreadsheet sql
Last synced: about 11 hours ago
JSON representation
tvořič šablon v pdf. Napsáno v Nette a pomocí latte má i frontend
- Host: GitHub
- URL: https://github.com/creatorcz/templaterbe-mvc-
- Owner: CReatorCZ
- Created: 2023-08-14T13:25:44.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2023-08-18T07:55:03.000Z (about 1 year ago)
- Last Synced: 2024-10-17T22:22:33.645Z (19 days ago)
- Topics: curl, export-to-excel, import-from-excel, latte, login-system, mpdf, nette-framework, phpspreadsheet, sql
- Language: Latte
- Homepage: http://project.local.cz/
- Size: 47.9 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
Nette Web Project
=================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.1 requires PHP 8.0
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/installMake 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/`, `config/`, `log/` and `temp/` directories are not accessible directly
via a web browser. See [security warning](https://nette.org/security-warning).**