https://github.com/nette-examples/micro-blog
https://github.com/nette-examples/micro-blog
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/nette-examples/micro-blog
- Owner: nette-examples
- License: other
- Created: 2020-11-25T17:21:17.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-04-26T10:48:26.000Z (about 2 years ago)
- Last Synced: 2025-07-10T21:56:57.524Z (11 months ago)
- Language: PHP
- Size: 49.8 KB
- Stars: 6
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license.md
Awesome Lists containing this project
README
Micro-blog [DISCONTINUED]
-------------------------
A simple example showing how to use [Nette Framework](https://nette.org) as a micro-framework.
What is [Nette Framework](https://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.
Installation
------------
```shell
git clone https://github.com/nette-examples/micro-blog
cd micro-blog
composer install
```
The simplest way to get started is to start the built-in PHP server in the root directory of your project:
```shell
php -S localhost:8000 -t www
```
Then visit `http://localhost:8000` in your browser to see the welcome page.
It requires PHP version 7.2 or newer.