6 lines
142 B
Bash
Executable File
6 lines
142 B
Bash
Executable File
#!/bin/bash
|
|
if [ ! -f /tmp/foo.txt ]; then
|
|
cp settings.ini.example settings.ini
|
|
fi
|
|
uwsgi --http :9090 --enable-threads --wsgi-file app.py
|