mirror of
https://github.com/chubin/wttr.in
synced 2024-11-15 00:27:09 +00:00
12 lines
311 B
Bash
Executable file
12 lines
311 B
Bash
Executable file
#!/bin/sh
|
|
export WEGORC="/srv/ephemeral/.wegorc"
|
|
export GOPATH="/srv/ephemeral"
|
|
|
|
export WTTR_MYDIR="/srv/ephemeral/wttr.in"
|
|
export WTTR_GEOLITE="/srv/ephemeral/GeoLite2-City.mmdb"
|
|
export WTTR_WEGO="$GOPATH/bin/wego"
|
|
|
|
export WTTR_LISTEN_HOST="0.0.0.0"
|
|
export WTTR_LISTEN_PORT="80"
|
|
|
|
python $WTTR_MYDIR/bin/srv.py
|