Skip to content

Commit 0f0abcf

Browse files
committed
Unrelated fix for some docs bits that I missed in #456
1 parent 140552f commit 0f0abcf

File tree

4 files changed

+125
-104
lines changed

4 files changed

+125
-104
lines changed

docs/.env

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ SERVER=localhost
99
DB_USER=analyst
1010
DB_PASS=foo
1111
JWT_SECRET_KEY=secret
12-
QUART_APP="app.main:create_app()"
12+
QUART_APP="flowapi.main:create_app()"
1313
QUART_DEBUG=1
1414
REDIS_PASSWORD=fm_redis

docs/Pipfile

+3-2
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,11 @@ geopandas = "*"
1818
numpydoc = "*"
1919
black = "==18.9b0"
2020
click = "*"
21-
"d3609ea" = {editable = true, path = "./../flowmachine"}
21+
flowmachine = {editable = true, path = "./../flowmachine"}
2222
descartes = "*"
2323
seaborn = "*"
24-
"3ff404a" = {editable = true, path = "./../flowclient"}
24+
flowclient = {editable = true, path = "./../flowclient"}
25+
flowapi = {editable = true, path = "./../flowapi"}
2526
mktheapidocs = "*"
2627
mknotebooks = "*"
2728
flask-jwt-extended = "*"

docs/Pipfile.lock

+120-94
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/build.sh

+1-7
Original file line numberDiff line numberDiff line change
@@ -40,17 +40,11 @@ else
4040
export PIPENV_DONT_LOAD_ENV=1
4141
fi
4242

43-
pushd ../flowmachine
44-
pipenv install -d
43+
pipenv install
4544
pipenv run flowmachine &
4645
echo "Started FlowMachine."
47-
popd
48-
pushd ../flowapi
49-
pipenv install -d
5046
pipenv run quart run --port 9090 &
5147
echo "Started FlowAPI."
52-
popd
5348
echo "Starting build."
5449

55-
pipenv install
5650
BRANCH=${CIRCLE_BRANCH:="master"} pipenv run mkdocs "${@:-build}"

0 commit comments

Comments
 (0)