-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* list merge issues fix * adding the util file --------- Co-authored-by: Fateh Ullah <fateh@stakater.com>
- Loading branch information
Showing
6 changed files
with
43 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
styles | ||
|
||
venv/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
chmod +x theme_common/scripts/create-virtual-env.sh | ||
./theme_common/scripts/create-virtual-env.sh | ||
source venv/bin/activate | ||
pip3 install -r theme_common/requirements.txt | ||
python3 theme_common/scripts/combine_theme_resources.py theme_common/resources theme_override/resources dist/_theme | ||
python3 theme_common/scripts/combine_mkdocs_config_yaml.py theme_common/mkdocs.yml theme_override/mkdocs.yml mkdocs.yml | ||
deactivate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
mkdocs-material>=9.5.2,<10.0.0 | ||
mkdocs-glightbox>=0.3.5,<1.0.0 | ||
mkdocs-glightbox>=0.3.5,<1.0.0 | ||
pyyaml>=6.0.1,<7.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#!/bin/bash | ||
|
||
# Define the name of the virtual environment | ||
VENV_DIR="venv" | ||
|
||
# Check if the virtual environment directory exists | ||
if [ ! -d "$VENV_DIR" ]; then | ||
# Create the virtual environment | ||
python3 -m venv $VENV_DIR | ||
echo "Virtual environment created in $VENV_DIR." | ||
else | ||
echo "Virtual environment already exists in $VENV_DIR." | ||
fi |