forked from perelman/contra-renderer
8 lines
161 B
Bash
Executable File
8 lines
161 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Change directory to www/ directory.
|
|
cd "$(dirname "$0")/www/" || exit
|
|
echo "Serving $(pwd)"
|
|
# From www/
|
|
python -m http.server --bind localhost 8085
|