13 lines
149 B
Bash
Executable File
13 lines
149 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Variables
|
|
APPDIR=${APPDIR:-"/app"}
|
|
DATA_DIR=${DATA_DIR:-"/data"}
|
|
|
|
# Functions
|
|
|
|
# Logic
|
|
|
|
cd ${APPDIR}
|
|
./webserver/server.py $@
|