Skip to content

Commit

Permalink
move images directory into docs
Browse files Browse the repository at this point in the history
  • Loading branch information
timohuber committed Jul 12, 2024
1 parent fbc716f commit c6043b6
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ RUN apt-get update \

# Install mermaid js dependencies
RUN apt-get update \
&& apt-get y install chromium
&& apt-get -y install chromium

# Switch back to dialog for any ad-hoc use of apt-get
ENV DEBIAN_FRONTEND=dialog
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,4 @@ node_modules

docs/_site/
docs/.jekyll_cache

images/*
docs/images/*
2 changes: 1 addition & 1 deletion docs/best_practices/online_studies.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ nav_order: 3
5. When the contact finished the survey, he/she should be redirected back to the callback url (more details)
6. The `participated` flag of the assignment will be set and the `participation count` will be updated

![online study workflow](../../images/online-studies.svg)
![online study workflow](../images/online-studies.svg)
Empty file removed images/.gitkeep
Empty file.
2 changes: 1 addition & 1 deletion scripts/render-images.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

input_dir="diagrams"
output_dir="images"
output_dir="docs/images"

for file in "$input_dir"/*.mmd; do
base_name=$(basename "$file" .mmd)
Expand Down

0 comments on commit c6043b6

Please sign in to comment.