mirror of
https://github.com/FlipsideCrypto/convox.git
synced 2026-02-06 10:56:56 +00:00
* stub out docs * add docs app * remove unused gcp code for packr * handle toc ajax * use SEGMENT_TOKEN for segment * remove manual install directory * docs first pass * remove loggin docs for now * remove webhooks docs for now * tweak docs list to first pass intentions * fix header links and add gen2
8 lines
167 B
Bash
Executable File
8 lines
167 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "$DEVELOPMENT" == "true" ]; then
|
|
exec watchexec -e go,md -r -s SIGTERM "make $GOPATH/bin/docs && $GOPATH/bin/docs"
|
|
else
|
|
exec $GOPATH/bin/docs
|
|
fi
|