Skip to content

Commit 8c67452

Browse files
committed
remove extra things from conf.py
1 parent 7ea3569 commit 8c67452

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
DISCOVER/_build/
33
DISCOVER/_tags/
44

5+
# helper files for translations
6+
*.mo
7+
58
# Pycharm
69
.idea/
710

DISCOVER/conf.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,8 @@
3838
external_toc_exclude_missing = False
3939
external_toc_path = '_toc.yml'
4040
html_baseurl = ''
41-
html_css_files = ['css/mainLogo.css']
4241
html_favicon = ''
43-
html_js_files = ['js/footer.js', 'js/logo-switcher.js']
44-
html_logo = '_static/images/logo-light.png'
42+
html_logo = 'logo.png'
4543
html_sourcelink_suffix = ''
4644
html_static_path = ['_static']
4745
html_theme = 'sphinx_book_theme'

ci/build_website.sh

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
echo "Starting build process..."
33

44
# Get parameters with defaults
5-
VERSION=${VERSION:-${1:-"dev"}}
5+
VERSION=${VERSION:-${1:-"2.0"}}
66
LANGUAGE=${LANGUAGE:-${2:-"en"}}
77

88
echo "Building version: $VERSION, language: $LANGUAGE"
@@ -15,6 +15,4 @@ rm -rf DISCOVER/_tags/*
1515

1616

1717
echo "Building $LANGUAGE version..."
18-
WEBSITE_VERSION="$VERSION" WEBSITE_LANGUAGE="$LANGUAGE" sphinx-build -b html DISCOVER/ DISCOVER/_build/html
19-
20-
echo "Build completed successfully: $VERSION/$LANGUAGE"
18+
WEBSITE_VERSION="$VERSION" WEBSITE_LANGUAGE="$LANGUAGE" sphinx-build -b html DISCOVER/ DISCOVER/_build/html

0 commit comments

Comments
 (0)