8 lines
105 B
Bash
Executable file
8 lines
105 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
export FLASK_ENV=development
|
|
python3 app.py &
|
|
cd slides
|
|
python3 -m http.server 7777
|