Skip to content

Commit 038ff2a

Browse files
author
Isidro A. López G
committed
Added local development server support.
1 parent ef3c91f commit 038ff2a

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

server.bat

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
printf "Welcome to Web Development Server Edition\n\n"
2+
3+
cd examples
4+
5+
php -S 127.0.0.1:8000

server.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/usr/bin/env bash
2+
3+
printf "Welcome to Web Development Server Edition\n\n"
4+
5+
cd examples
6+
7+
php -S 127.0.0.1:8000

0 commit comments

Comments
 (0)