frontend-zackeneule/tools/run

14 lines
152 B
Text
Raw Permalink Normal View History

2024-04-22 10:19:47 +02:00
#!/usr/bin/env bash
## args
if [ $# -ge 1 ] ; then port=$1 ; else port=8888 ; fi
## exec
2024-04-22 10:02:43 +02:00
cd build
2024-04-22 10:19:47 +02:00
python3 -m http.server ${port}
cd - > /dev/null