https://github.com/carno-php/skel-httpd
https://github.com/carno-php/skel-httpd
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/carno-php/skel-httpd
- Owner: carno-php
- Created: 2018-10-17T06:20:59.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-25T08:39:56.000Z (over 7 years ago)
- Last Synced: 2025-01-22T06:48:04.405Z (over 1 year ago)
- Language: PHP
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# How to create a web server
## Creating project
```bash
composer create-project carno-php/skel-httpd my-project
```
## Run application
```bash
./vendor/bin/httpd server:start --listen=:8080 --debug
```
## Get the world
```bash
curl http://127.0.0.1:8080/
```