Skip to content

docs: update path & add missing modules #62

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 17, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 14 additions & 3 deletions docs/generate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,19 @@ if [[ "$OUTDIR" == "" ]]; then
fi

TITLE="Firebase Python SDK for Cloud Functions"
PY_MODULES='firebase_functions firebase_functions.core firebase_functions.https_fn firebase_functions.params firebase_functions.db_fn firebase_functions.options firebase_functions.pubsub_fn firebase_functions.storage_fn'
DEVSITE_PATH='/docs/reference/functions-python'
PY_MODULES='firebase_functions
firebase_functions.core
firebase_functions.db_fn
firebase_functions.https_fn
firebase_functions.options
firebase_functions.params
firebase_functions.pubsub_fn
firebase_functions.remote_config_fn
firebase_functions.scheduler_fn
firebase_functions.storage_fn
firebase_functions.tasks_fn
firebase_functions.test_lab_fn'
DEVSITE_PATH='/docs/reference/functions/2nd-gen/python'

#
# Set up temporary project
Expand Down Expand Up @@ -143,7 +154,7 @@ done

echo Building HTML...
echo "$PYTHONPATH"
PYTHONPATH="$PYTHONPATH" "$SPHINXBIN" -W -b html . _build/
PYTHONPATH="$PYTHONPATH" "$SPHINXBIN" -W -v -b html . _build/
if [ "$?" -ne 0 ]; then
exit 1
fi
Expand Down